From 88ca071341ac534d522fe3a45f2af6393192f53d Mon Sep 17 00:00:00 2001 From: Nabarun Pal Date: Thu, 27 May 2021 20:44:09 +0530 Subject: [PATCH 1/4] Drop support for Python 3.5 Signed-off-by: Nabarun Pal --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 2398d01974..3d2ee4a95a 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,6 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", From 6fe32fecebec6024692bd978e45906baf8510159 Mon Sep 17 00:00:00 2001 From: Nabarun Pal Date: Thu, 27 May 2021 20:49:01 +0530 Subject: [PATCH 2/4] Remove Python 3.5 env from tox config Signed-off-by: Nabarun Pal --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 93685c74eb..9c7e4b7e09 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = - py3{5,6,7,8,9} - py3{5,6,7,8,9}-functional + py3{6,7,8,9} + py3{6,7,8,9}-functional [testenv] passenv = TOXENV CI TRAVIS TRAVIS_* From 9c36296de4b581e9a1fd99ccc6374ade99cc60b2 Mon Sep 17 00:00:00 2001 From: Nabarun Pal Date: Thu, 27 May 2021 20:49:21 +0530 Subject: [PATCH 3/4] Remove Python 3.5 Travis CI jobs Signed-off-by: Nabarun Pal --- .travis.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1f06297969..c54d6cf8af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,15 +25,11 @@ jobs: - stage: test python: 3.9 - env: TOXENV=update-pycodestyle + env: TOXENV=update-pycodestyle - python: 3.9 - env: TOXENV=coverage,codecov + env: TOXENV=coverage,codecov - python: 3.7 env: TOXENV=docs - - python: 3.5 - env: TOXENV=py35 - - python: 3.5 - env: TOXENV=py35-functional - python: 3.6 env: TOXENV=py36 - python: 3.6 @@ -66,13 +62,10 @@ jobs: - stage: test python: 3.9 env: TOXENV=update-pycodestyle - arch: ppc64le + arch: ppc64le - python: 3.7 env: TOXENV=docs arch: ppc64le - - python: 3.5 - env: TOXENV=py35 - arch: ppc64le - python: 3.6 env: TOXENV=py36 arch: ppc64le From 30fe907ea5dd3515c527a602f4f2a1814badabbb Mon Sep 17 00:00:00 2001 From: Nabarun Pal Date: Thu, 27 May 2021 20:49:49 +0530 Subject: [PATCH 4/4] Remove Python 3.5 GitHub Actions pipelines Signed-off-by: Nabarun Pal --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e64fb1a385..65640995e0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2