Skip to content

Commit 63e4fae

Browse files
Drop support for Python 3.5 (PyGithub#1770)
In preperation for starting to use 3.6+ only features, stop testing Python 3.5 in our CI, and bump our minimum required version.
1 parent a806b52 commit 63e4fae

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: test (Python ${{ matrix.python-version }})
1010
strategy:
1111
matrix:
12-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
12+
python-version: [3.6, 3.7, 3.8, 3.9]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,13 @@
9292
"Operating System :: OS Independent",
9393
"Programming Language :: Python",
9494
"Programming Language :: Python :: 3",
95-
"Programming Language :: Python :: 3.5",
9695
"Programming Language :: Python :: 3.6",
9796
"Programming Language :: Python :: 3.7",
9897
"Programming Language :: Python :: 3.8",
9998
"Programming Language :: Python :: 3.9",
10099
"Topic :: Software Development",
101100
],
102-
python_requires=">=3.5",
101+
python_requires=">=3.6",
103102
install_requires=["deprecated", "pyjwt", "requests>=2.14.0"],
104103
extras_require={"integrations": ["cryptography"]},
105104
tests_require=["cryptography", "httpretty>=1.0.3"],

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[tox]
22
envlist =
33
lint,
4-
py{35,36,37,38,39},
4+
py{36,37,38,39},
55
docs
66

77
[gh-actions]
88
python =
9-
3.5: py35
109
3.6: py36, docs, lint
1110
3.7: py37
1211
3.8: py38

0 commit comments

Comments
 (0)