Skip to content

Commit 2555156

Browse files
Rust Saiargalievn2ygk
andauthored
Drop retired Python 3.5 (#936)
* Drop retired Python 3.5 Python 3.5 did reach end-of-life in September 2020: https://www.python.org/downloads/release/python-3510/ We can safely remove it from CI to reduce test running time. * Add my name to AUTHORS Co-authored-by: Alan Crosswell <alan@columbia.edu>
1 parent d6d1f99 commit 2555156

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
max-parallel: 5
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

1414
steps:
1515
- uses: actions/checkout@v2

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ Dylan Giesler
4141
Spencer Carroll
4242
Dulmandakh Sukhbaatar
4343
Will Beaufoy
44+
Rustem Saiargaliev

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
## [unreleased]
1818

19+
### Removed
20+
* Remove support for Python 3.5
21+
1922
## [1.4.1]
2023

2124
### Changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Please report any security issues to the JazzBand security team at <security@jaz
4141
Requirements
4242
------------
4343

44-
* Python 3.5+
44+
* Python 3.6+
4545
* Django 2.1+
4646
* oauthlib 3.1+
4747

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you need support please send a message to the `Django OAuth Toolkit Google Gr
2121
Requirements
2222
------------
2323

24-
* Python 3.5+
24+
* Python 3.6+
2525
* Django 2.2+
2626
* oauthlib 3.1+
2727

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 110
3-
target-version = ['py35']
3+
target-version = ['py38']
44
exclude = '''
55
^/(
66
oauth2_provider/migrations/

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ classifiers =
1919
License :: OSI Approved :: BSD License
2020
Operating System :: OS Independent
2121
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.5
2322
Programming Language :: Python :: 3.6
2423
Programming Language :: Python :: 3.7
2524
Programming Language :: Python :: 3.8

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ envlist =
33
flake8,
44
docs,
55
py{36,37,38,39}-dj{31,30,22},
6-
py35-dj{22},
76
py{38,39}-djmain,
87

98
[gh-actions]
109
python =
11-
3.5: py35
1210
3.6: py36
1311
3.7: py37
1412
3.8: py38, docs, flake8

0 commit comments

Comments
 (0)