Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit e09b85d

Browse files
slivercn2ygk
andauthored
Drop EOL Python 3.5 support (#840)
Co-authored-by: Alan Crosswell <alan@columbia.edu>
1 parent 15f5424 commit e09b85d

File tree

6 files changed

+6
-13
lines changed

6 files changed

+6
-13
lines changed

‎.travis.yml‎

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ cache: pip
55
# Favor explicit over implicit and use an explicit build matrix.
66
matrix:
77
allow_failures:
8-
- env: TOXENV=py35-django22-drfmaster
98
- env: TOXENV=py36-django22-drfmaster
109
- env: TOXENV=py37-django22-drfmaster
1110
- env: TOXENV=py38-django22-drfmaster
@@ -22,11 +21,6 @@ matrix:
2221
- python: 3.6
2322
env: TOXENV=docs
2423

25-
- python: 3.5
26-
env: TOXENV=py35-django22-drf312
27-
- python: 3.5
28-
env: TOXENV=py35-django22-drfmaster
29-
3024
- python: 3.6
3125
env: TOXENV=py36-django22-drf312
3226
- python: 3.6

‎CHANGELOG.md‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ This release is not backwards compatible. For easy migration best upgrade first
2020

2121
### Removed
2222

23+
* Removed support for Python 3.5.
2324
* Removed support for Django 1.11.
2425
* Removed support for Django 2.1.
2526
* Removed support for Django REST framework 3.10, 3.11
@@ -29,7 +30,7 @@ This release is not backwards compatible. For easy migration best upgrade first
2930

3031
## [3.2.0] - 2020年08月26日
3132

32-
This is the last release supporting Django 1.11, Django 2.1, DRF 3.10 and DRF 3.11.
33+
This is the last release supporting Django 1.11, Django 2.1, DRF 3.10, DRF 3.11 and Python 3.5.
3334

3435
### Added
3536

‎README.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ As a Django REST Framework JSON API (short DJA) we are trying to address followi
8787
Requirements
8888
------------
8989

90-
1. Python (3.5, 3.6, 3.7, 3.8)
90+
1. Python (3.6, 3.7, 3.8)
9191
2. Django (2.2, 3.0, 3.1)
9292
3. Django REST Framework (3.12)
9393

‎docs/getting-started.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ like the following:
5151

5252
## Requirements
5353

54-
1. Python (3.5, 3.6, 3.7, 3.8)
54+
1. Python (3.6, 3.7, 3.8)
5555
2. Django (2.2, 3.0, 3.1)
5656
3. Django REST Framework (3.12)
5757

‎setup.py‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def get_package_data(package):
8181
'Operating System :: OS Independent',
8282
'Programming Language :: Python',
8383
'Programming Language :: Python :: 3',
84-
'Programming Language :: Python :: 3.5',
8584
'Programming Language :: Python :: 3.6',
8685
'Programming Language :: Python :: 3.7',
8786
'Programming Language :: Python :: 3.8',
@@ -99,6 +98,6 @@ def get_package_data(package):
9998
'django-filter': ['django-filter>=2.0']
10099
},
101100
setup_requires=wheel,
102-
python_requires=">=3.5",
101+
python_requires=">=3.6",
103102
zip_safe=False,
104103
)

‎tox.ini‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
22
envlist =
3-
py{35,36,37,38}-django22-drf{312,master},
4-
py{36,37,38}-django{30.31}-drf{312,master},
3+
py{36,37,38}-django{22,30,31}-drf{312,master},
54
lint,docs
65

76
[testenv]

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /