Skip to content

Commit 3db6bce

Browse files
authored
Added support for Python 3.10 (django-json-api#1013)
1 parent ffedc6b commit 3db6bce

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9"]
11+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1212
env:
1313
PYTHON: ${{ matrix.python-version }}
1414
steps:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ any parts of the framework not mentioned in the documentation should generally b
1313
### Added
1414

1515
* Added support for Django 4.0.
16+
* Added support for Python 3.10.
1617

1718
### Fixed
1819

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ As a Django REST framework JSON:API (short DJA) we are trying to address followi
8888
Requirements
8989
------------
9090

91-
1. Python (3.6, 3.7, 3.8, 3.9)
91+
1. Python (3.6, 3.7, 3.8, 3.9, 3.10)
9292
2. Django (2.2, 3.0, 3.1, 3.2, 4.0)
9393
3. Django REST framework (3.12)
9494

docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ like the following:
5151

5252
## Requirements
5353

54-
1. Python (3.6, 3.7, 3.8, 3.9)
54+
1. Python (3.6, 3.7, 3.8, 3.9, 3.10)
5555
2. Django (2.2, 3.0, 3.1, 3.2, 4.0)
5656
3. Django REST framework (3.12)
5757

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def get_package_data(package):
9090
"Programming Language :: Python :: 3.7",
9191
"Programming Language :: Python :: 3.8",
9292
"Programming Language :: Python :: 3.9",
93+
"Programming Language :: Python :: 3.10",
9394
"Topic :: Internet :: WWW/HTTP",
9495
"Topic :: Software Development :: Libraries :: Application Frameworks",
9596
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist =
33
py{36,37,38,39}-django{22,30,31,32}-drf{312,master},
44
py{38,39}-django40-drf{312,master},
5+
py310-django{32,40}-drf{312,master},
56
lint,docs
67

78
[testenv]

0 commit comments

Comments
 (0)