Skip to content

Commit

Permalink
add django 4.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Umar Asghar committed Sep 29, 2021
1 parent 9861826 commit ebf113d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ master (unreleased)
- Dropped support for Django 3.0
- Added suppport for Django 3.1
- Added suppport for Django 3.2
- Added support for Django 4.0

4.0 (2020-01-04)
-----------------
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ directory or on ReadTheDocs: https://django-robots.readthedocs.io/

Supported Django versions
-------------------------
* Django 4.0
* Django 3.2
* Django 3.1
* Django 2.2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@ def read(*parts):
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
]
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist =
# list of supported Django/Python versions:
# https://docs.djangoproject.com/en/3.1/faq/install/#what-python-version-can-i-use-with-django
py{36,37,38,39}-dj{22,31,32}
py{36,37,38,39}-dj{22,31,32,40}
py{38,39}-djmain
py38-{lint,docs}

Expand All @@ -27,6 +27,7 @@ deps =
dj22: django>=2.2,<2.3
dj31: django>=3.1,<3.2
dj32: django>=3.2,<3.3
dj40: django>=4.0a1,<4.1
djmain: https://github.com/django/django/archive/main.tar.gz

[testenv:py38-lint]
Expand Down

0 comments on commit ebf113d

Please sign in to comment.