Skip to content

Commit

Permalink
Drop official support for Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
apragacz committed Dec 22, 2021
1 parent 19897dc commit 2288cf1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 13 deletions.
7 changes: 0 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@ executors:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_PASSWORD
working_directory: ~/project
docker-executor-py34:
docker:
- image: cimg/python:3.4
auth:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_PASSWORD
working_directory: ~/project
docker-executor-py35:
docker:
- image: cimg/python:3.5
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ You can list the available targets with the following command:

make help

Assuming you are in the cloned repository and have Python 3.4+ installed:
Assuming you are in the cloned repository and have Python 3.5+ installed:

python3 -m venv .venv
source .venv/bin/activate
Expand Down Expand Up @@ -145,7 +145,7 @@ If you don't want to install `tox` globally, you should be able
to run `tox` command within the virtualenv as well.

If you want to run all tox environments, you will need to have multiple versions
of Python installed (`3.4` - `3.7`). You will need to have GNU make installed
of Python installed (`3.5` - `3.9`). You will need to have GNU make installed
as well.

You can also run specific environment; for instance:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Full documentation for the project is available at [https://django-rest-registra
## Requirements

* Django (2.0+, 3.0+, 4.0+) and Django-REST-Framework (3.3+)
* Python 3.4 or higher (no Python 2 support!)
* Python 3.5 or higher (no Python 2 support!)

## Features

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Requirements
------------

- Django (2.0+, 3.0+, 4.0+) and Django-REST-Framework (3.3+)
- Python 3.4 or higher (no Python 2 support!)
- Python 3.5 or higher (no Python 2 support!)


Features
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ classifiers =

[options]
include_package_data = True
python_requires = >=3.4
python_requires = >=3.5

[isort]
line_length = 88
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist =
py{37,36}-django30,
py{37,36}-django22,
py{36,35}-django21,
py{36,35,34}-django20,
py{36,35}-django20,
py{37,36}-djangomaster

[testenv]
Expand Down

0 comments on commit 2288cf1

Please sign in to comment.