summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-05-30 17:11:49 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-05-31 08:38:53 -0400
commita5dbf96442a539dbdb59af56898f0571dc68c3d6 (patch)
tree2bb0bbbbfcf2a3fa1bd39a5cb7676c68893ecfb7
parent74de4e985eda49e38ece5805e05197dd4d2d9c8a (diff)
downloadpython-setuptools-git-a5dbf96442a539dbdb59af56898f0571dc68c3d6.tar.gz
Drop support for Python 3.5.
-rw-r--r--.github/workflows/python-tests.yml1
-rw-r--r--.travis.yml1
-rw-r--r--appveyor.yml12
-rw-r--r--setup.cfg7
4 files changed, 8 insertions, 13 deletions
diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml
index e3663cf0..41441644 100644
--- a/.github/workflows/python-tests.yml
+++ b/.github/workflows/python-tests.yml
@@ -23,7 +23,6 @@ jobs:
- pypy3
- 3.7
- 3.6
- - 3.5
os:
- ubuntu-latest
- ubuntu-16.04
diff --git a/.travis.yml b/.travis.yml
index f97abc51..fa04a42e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,6 @@ jobs:
include:
- python: pypy3
env: DISABLE_COVERAGE=1 # Don't run coverage on pypy (too slow).
- - python: 3.5
- python: 3.6
- python: 3.7
- &latest_py3
diff --git a/appveyor.yml b/appveyor.yml
index de4e6c66..3c0c36b8 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -8,15 +8,13 @@ environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- APPVEYOR_JOB_NAME: "python35-x64-vs2015"
- PYTHON: "C:\\Python35-x64"
+ APPVEYOR_JOB_NAME: "python36-x64-vs2015"
+ PYTHON: "C:\\Python36-x64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- APPVEYOR_JOB_NAME: "python35-x64-vs2017"
- PYTHON: "C:\\Python35-x64"
+ APPVEYOR_JOB_NAME: "python36-x64-vs2017"
+ PYTHON: "C:\\Python36-x64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- APPVEYOR_JOB_NAME: "python35-x64-vs2019"
- PYTHON: "C:\\Python35-x64"
- - APPVEYOR_JOB_NAME: "python36-x64"
+ APPVEYOR_JOB_NAME: "python36-x64-vs2019"
PYTHON: "C:\\Python36-x64"
- APPVEYOR_JOB_NAME: "python37-x64"
PYTHON: "C:\\Python37-x64"
diff --git a/setup.cfg b/setup.cfg
index 66fb8921..8558057f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -34,7 +34,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
@@ -45,7 +44,7 @@ classifiers =
[options]
zip_safe = True
-python_requires = >=3.5
+python_requires = >=3.6
py_modules = easy_install
packages = find:
@@ -62,14 +61,14 @@ certs =
tests =
mock
pytest-flake8
- flake8-2020; python_version>="3.6"
+ flake8-2020
virtualenv>=13.0.0
pytest-virtualenv>=1.2.7
pytest>=3.7
wheel
coverage>=4.5.1
pytest-cov>=2.5.1
- paver; python_version>="3.6"
+ paver
futures; python_version=="2.7"
pip>=19.1 # For proper file:// URLs support.