Skip to content

Commit

Permalink
Run tests against Django 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-k authored and carltongibson committed Apr 6, 2021
1 parent b6b1139 commit cb06870
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9.0-rc - 3.9]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Unreleased
----------

* Added testing against Django 3.2.

Version 2.4.0 (2020-9-27)
--------------------------

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

* **Python**: 3.5, 3.6, 3.7, 3.8, 3.9
* **Django**: 2.2, 3.0, 3.1
* **Django**: 2.2, 3.0, 3.1, 3.2
* **DRF**: 3.10+

From Version 2.0 Django Filter is Python 3 only.
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ __ http://www.django-rest-framework.org/


* **Python**: 3.5, 3.6, 3.7, 3.8
* **Django**: 2.2, 3.0, 3.1
* **Django**: 2.2, 3.0, 3.1, 3.2
* **DRF**: 3.10+
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ envlist =
{py35,py36,py37}-django22,
{py36,py37,py38}-django30,
{py36,py37,py38,py39}-django31,
{py36,py37,py38,py39}-django32,
{py38,py39}-latest,
isort,lint,docs,warnings,

Expand All @@ -20,6 +21,7 @@ deps =
django22: django~=2.2.0
django30: django~=3.0.0
django31: django~=3.1.0
django32: django~=3.2.0
!latest: djangorestframework~=3.12.0
latest: {[latest]deps}
-rrequirements/test-ci.txt
Expand Down

0 comments on commit cb06870

Please sign in to comment.