Skip to content

Commit

Permalink
Add Python 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
David Grochowski authored and ThePumpingLemma committed Nov 12, 2020
1 parent 6ea84e4 commit 746fdfd
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -5,6 +5,7 @@ Unreleased
----------
- Removed support for Django versions prior to 2.2 (gh-652)
- Migrate from TravisCI to Github Actions (gh-739)
- Add Python 3.9 support (gh-745)

2.12.0 (2020-10-14)
-------------------
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -41,9 +41,9 @@ This app supports the following combinations of Django and Python:
========== =======================
Django Python
========== =======================
2.2 3.5, 3.6, 3.7, 3.8
3.0 3.6, 3.7, 3.8
3.1 3.6, 3.7, 3.8
2.2 3.5, 3.6, 3.7, 3.8, 3.9
3.0 3.6, 3.7, 3.8, 3.9
3.1 3.6, 3.7, 3.8, 3.9
========== =======================

Getting Help
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Expand Up @@ -41,8 +41,8 @@ This app supports the following combinations of Django and Python:
========== =======================
Django Python
========== =======================
2.2 3.5, 3.6, 3.7, 3.8
3.0 3.6, 3.7, 3.8
2.2 3.5, 3.6, 3.7, 3.8, 3.9
3.0 3.6, 3.7, 3.8, 3.9
========== =======================

Contribute
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -31,6 +31,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
],
python_requires=">=3.5",
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
@@ -1,9 +1,9 @@
[tox]
envlist =
py{35,36,37,38}-django22,
py{36,37,38}-django30,
py{36,37,38}-django31,
py{36,37,38}-djangodev,
py{35,36,37,38,39}-django22,
py{36,37,38,39}-django30,
py{36,37,38,39}-django31,
py{36,37,38,39}-djangodev,
docs,
lint

Expand All @@ -13,6 +13,7 @@ python =
3.6: py36
3.7: py37
3.8: py38, docs, lint
3.9: py39

[flake8]
ignore = N802,F401,W503
Expand Down

0 comments on commit 746fdfd

Please sign in to comment.