1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-15 20:50:05 +00:00

no more python 3.5

This commit is contained in:
deadc0de6
2022-08-25 23:30:14 +02:00
parent 5b9d248219
commit 565dad58c6
4 changed files with 15 additions and 16 deletions

View File

@@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}

14
requirements.txt vendored
View File

@@ -1,7 +1,7 @@
Jinja2; python_version > '3.4' Jinja2; python_version > '3.5'
docopt; python_version > '3.4' docopt; python_version > '3.5'
ruamel.yaml; python_version > '3.4' ruamel.yaml; python_version > '3.5'
python-magic; python_version > '3.4' python-magic; python_version > '3.5'
packaging; python_version > '3.4' packaging; python_version > '3.5'
requests; python_version > '3.4' requests; python_version > '3.5'
toml; python_version > '3.4' toml; python_version > '3.5'

View File

@@ -31,7 +31,6 @@ setup(
python_requires=REQUIRES_PYTHON, python_requires=REQUIRES_PYTHON,
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',

View File

@@ -1,7 +1,7 @@
pycodestyle; python_version > '3.4' pycodestyle; python_version > '3.5'
nose2; python_version > '3.4' nose2; python_version > '3.5'
coverage; python_version > '3.4' coverage; python_version > '3.5'
coveralls; python_version > '3.4' coveralls; python_version > '3.5'
pyflakes; python_version > '3.4' pyflakes; python_version > '3.5'
pylint; python_version > '3.4' pylint; python_version > '3.5'
halo; python_version > '3.4' halo; python_version > '3.5'