Skip to content

Commit

Permalink
Drop support for Python 3.5
Browse files Browse the repository at this point in the history
This will help with typing in particular.

Fixes #308.
  • Loading branch information
bluetech committed Aug 9, 2021
1 parent 2d01777 commit 3f51f2a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ jobs:
fail-fast: false
matrix:
name: [
"windows-py35",
"windows-py36",
"windows-py37",
"windows-pypy3",

"ubuntu-py35",
"ubuntu-py36",
"ubuntu-py36-pytestmain",
"ubuntu-py37",
Expand All @@ -37,10 +35,6 @@ jobs:
]

include:
- name: "windows-py35"
python: "3.5"
os: windows-latest
tox_env: "py35"
- name: "windows-py36"
python: "3.6"
os: windows-latest
Expand All @@ -53,11 +47,6 @@ jobs:
python: "pypy3"
os: windows-latest
tox_env: "pypy3"
- name: "ubuntu-py35"
python: "3.5"
os: ubuntu-latest
tox_env: "py35"
use_coverage: true
- name: "ubuntu-py36"
python: "3.6"
os: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions changelog/308.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove official support for Python 3.5.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
] + [("Programming Language :: Python :: %s" % x) for x in "3 3.5 3.6 3.7 3.8".split()]
] + [("Programming Language :: Python :: %s" % x) for x in "3 3.6 3.7 3.8".split()]

with open("README.rst", "rb") as fd:
long_description = fd.read().decode("utf-8")
Expand All @@ -39,7 +39,7 @@ def main():
author="Holger Krekel",
author_email="holger@merlinux.eu",
url="https://github.com/pytest-dev/pluggy",
python_requires=">=3.5",
python_requires=">=3.6",
install_requires=['importlib-metadata>=0.12;python_version<"3.8"'],
extras_require=EXTRAS_REQUIRE,
classifiers=classifiers,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=linting,docs,py{35,36,37,38,py3},py{36,37}-pytest{master}
envlist=linting,docs,py{36,37,38,py3},py{36,37}-pytest{master}

[testenv]
commands=
Expand Down

0 comments on commit 3f51f2a

Please sign in to comment.