Skip to content

Commit 0ba1fc0

Browse files
johnthagendavesque
authored andcommitted
Restore Python 3.7 support and update supported Python versions to include Python 3.9
1 parent a9f95be commit 0ba1fc0

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

.circleci/config.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ jobs:
5555
- image: circleci/python:3.8
5656
environment:
5757
TOXENV: docs
58+
python37-drf310:
59+
<<: *common
60+
docker:
61+
- image: circleci/python:3.7
62+
environment:
63+
TOXENV: 'py37-django{22,30}-drf310-tests'
5864
python38-drf310:
5965
<<: *common
6066
docker:
@@ -67,6 +73,12 @@ jobs:
6773
- image: circleci/python:3.9
6874
environment:
6975
TOXENV: 'py39-django{22,30}-drf310-tests'
76+
python37-other:
77+
<<: *common
78+
docker:
79+
- image: circleci/python:3.7
80+
environment:
81+
TOXENV: 'py37-django{22,30,31}-drf{311,312}-tests'
7082
python38-other:
7183
<<: *common
7284
docker:

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Getting started
66
Requirements
77
------------
88

9-
* Python (3.8, 3.9)
9+
* Python (3.7, 3.8, 3.9)
1010
* Django (2.2, 3.0, 3.1)
1111
* Django REST Framework (3.10, 3.11, 3.12)
1212

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
'Operating System :: OS Independent',
7272
'Programming Language :: Python',
7373
'Programming Language :: Python :: 3',
74-
'Programming Language :: Python :: 3.6',
7574
'Programming Language :: Python :: 3.7',
7675
'Programming Language :: Python :: 3.8',
76+
'Programming Language :: Python :: 3.9',
7777
'Topic :: Internet :: WWW/HTTP',
7878
]
7979
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
3-
py{38,39}-django{22,30}-drf310-tests
4-
py{38,39}-django{22,30,31}-drf{311,312}-tests
3+
py{37,38,39}-django{22,30}-drf310-tests
4+
py{37,38,39}-django{22,30,31}-drf{311,312}-tests
55
py39-djangomaster-drf312-tests
66
lint
77
docs

0 commit comments

Comments
 (0)