From 565dad58c65e0635e1f061e2690a1d0f38103463 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Thu, 25 Aug 2022 23:30:14 +0200 Subject: [PATCH] no more python 3.5 --- .github/workflows/testing.yml | 2 +- requirements.txt | 14 +++++++------- setup.py | 1 - tests-requirements.txt | 14 +++++++------- 4 files changed, 15 insertions(+), 16 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ab465af..72ca8f3 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: 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: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/requirements.txt b/requirements.txt index c10954d..020fcf8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -Jinja2; python_version > '3.4' -docopt; python_version > '3.4' -ruamel.yaml; python_version > '3.4' -python-magic; python_version > '3.4' -packaging; python_version > '3.4' -requests; python_version > '3.4' -toml; python_version > '3.4' +Jinja2; python_version > '3.5' +docopt; python_version > '3.5' +ruamel.yaml; python_version > '3.5' +python-magic; python_version > '3.5' +packaging; python_version > '3.5' +requests; python_version > '3.5' +toml; python_version > '3.5' diff --git a/setup.py b/setup.py index 87d03ec..ec45e2b 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,6 @@ setup( python_requires=REQUIRES_PYTHON, classifiers=[ 'Development Status :: 5 - Production/Stable', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', diff --git a/tests-requirements.txt b/tests-requirements.txt index 51c1488..2551ef6 100644 --- a/tests-requirements.txt +++ b/tests-requirements.txt @@ -1,7 +1,7 @@ -pycodestyle; python_version > '3.4' -nose2; python_version > '3.4' -coverage; python_version > '3.4' -coveralls; python_version > '3.4' -pyflakes; python_version > '3.4' -pylint; python_version > '3.4' -halo; python_version > '3.4' +pycodestyle; python_version > '3.5' +nose2; python_version > '3.5' +coverage; python_version > '3.5' +coveralls; python_version > '3.5' +pyflakes; python_version > '3.5' +pylint; python_version > '3.5' +halo; python_version > '3.5'