Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Python 3.5 #2435

Merged
merged 5 commits into from Oct 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/python-tests.yml
Expand Up @@ -24,7 +24,6 @@ jobs:
- pypy3
- 3.7
- 3.6
- 3.5
os:
- ubuntu-18.04
- ubuntu-16.04
Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -5,7 +5,6 @@ jobs:
fast_finish: true
include:
- python: pypy3
- python: 3.5
- python: 3.6
- python: 3.7
- &latest_py3
Expand All @@ -19,7 +18,7 @@ jobs:
- arch: ppc64le
python: pypy3
- arch: ppc64le
python: 3.5
python: 3.6
- &latest_py3_ppc
arch: ppc64le
python: 3.8
Expand Down
4 changes: 0 additions & 4 deletions appveyor.yml
Expand Up @@ -20,10 +20,6 @@ environment:
PYTHON: "C:\\Python37-x64"
- APPVEYOR_JOB_NAME: "python36-x64"
PYTHON: "C:\\Python36-x64"
- APPVEYOR_JOB_NAME: "python35-x64"
PYTHON: "C:\\Python35-x64"
PYTEST_ADDOPTS: "--cov"
TOX_TESTENV_PASSENV: "PYTEST_ADDOPTS"

install:
# symlink python from a directory with a space
Expand Down
1 change: 1 addition & 0 deletions changelog.d/2435.breaking.rst
@@ -0,0 +1 @@
Require Python 3.6 or later.
10 changes: 4 additions & 6 deletions setup.cfg
Expand Up @@ -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
Expand All @@ -46,7 +45,7 @@ classifiers =

[options]
zip_safe = True
python_requires = >=3.5
python_requires = >=3.6
py_modules = easy_install
packages = find:

Expand All @@ -63,15 +62,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
# Coverage is unbearably slow on PyPy
pytest-cov>=2.5.1; python_implementation != "PyPy"
paver; python_version>="3.6"
pytest-cov>=2.5.1
paver
pip>=19.1 # For proper file:// URLs support.
jaraco.envs
jaraco.test >= 3.1.1; python_version >= "3.6"
Expand Down