Skip to content

Commit a32a0b8

Browse files
committed
Drop official Py 3.6 support
1 parent 7c677bf commit a32a0b8

File tree

5 files changed

+10
-17
lines changed

5 files changed

+10
-17
lines changed

.circleci/config.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@ executors:
99
username: $DOCKERHUB_USERNAME
1010
password: $DOCKERHUB_PASSWORD
1111
working_directory: ~/project
12-
docker-executor-py36:
13-
docker:
14-
- image: cimg/python:3.6
15-
auth:
16-
username: $DOCKERHUB_USERNAME
17-
password: $DOCKERHUB_PASSWORD
18-
working_directory: ~/project
1912
docker-executor-py37:
2013
docker:
2114
- image: cimg/python:3.7
@@ -215,17 +208,17 @@ workflows:
215208
requires:
216209
- test
217210
- test-tox:
218-
name: test-tox-py36-django21
219-
py: "36"
211+
name: test-tox-py37-django21
212+
py: "37"
220213
django: "21"
221214
requires:
222215
- test
223216
filters:
224217
branches:
225218
only: master
226219
- test-tox:
227-
name: test-tox-py36-django20
228-
py: "36"
220+
name: test-tox-py37-django20
221+
py: "37"
229222
django: "20"
230223
requires:
231224
- test

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ If you don't want to install `tox` globally, you should be able
145145
to run `tox` command within the virtualenv as well.
146146

147147
If you want to run all tox environments, you will need to have multiple versions
148-
of Python installed (`3.6` - `3.11`). You will need to have GNU make installed
148+
of Python installed (`3.7` - `3.11`). You will need to have GNU make installed
149149
as well.
150150

151151
You can also run specific environment; for instance:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Full documentation for the project is available at [https://django-rest-registra
1313

1414
## Requirements
1515

16-
* Django (2.0+, 3.0+, 4.0+) and Django-REST-Framework (3.3+)
17-
* Python 3.6 or higher (no Python 2 support!)
16+
* Django (2.0+, 3.0+, 4.0+, 5.0+) and Django-REST-Framework (3.3+)
17+
* Python 3.7 or higher (no Python 2 support!)
1818

1919
## Features
2020

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ User registration REST API, based on Django-REST-Framework.
2020
Requirements
2121
------------
2222

23-
- Django (2.0+, 3.0+, 4.0+) and Django-REST-Framework (3.3+)
24-
- Python 3.6 or higher (no Python 2 support!)
23+
- Django (2.0+, 3.0+, 4.0+, 5.0+) and Django-REST-Framework (3.3+)
24+
- Python 3.7 or higher (no Python 2 support!)
2525

2626

2727
Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
description = "User registration REST API, based on django-rest-framework"
1212
readme = "README.md"
1313
license = {file = "LICENSE"}
14-
requires-python = ">=3.6"
14+
requires-python = ">=3.7"
1515
dependencies = [
1616
"Django>=2.0",
1717
"djangorestframework>=3.3",

0 commit comments

Comments
 (0)