Skip to content

Commit ef74319

Browse files
authored
Added testing for Python 3.10.
1 parent c5014f3 commit ef74319

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8, 3.9]
10+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
1111

1212
steps:
1313
- uses: actions/checkout@v3

HISTORY.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Unreleased
77
----------
88

99
* Confirmed support for Django 4.1.
10+
* Confirmed support for Python 3.10.
1011

1112
2.2.0 (2022-01-31)
1213
------------------

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
'Programming Language :: Python :: 3.7',
4141
'Programming Language :: Python :: 3.8',
4242
'Programming Language :: Python :: 3.9',
43+
'Programming Language :: Python :: 3.10',
4344
],
4445
packages=find_packages(exclude=['tests', 'tests.*']),
4546
include_package_data=True,

tox.ini

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ envlist =
33
py3{5,6,7,8,9}-django22
44
py3{6,7,8,9}-django30
55
py3{6,7,8,9}-django31
6-
py3{6,7,8,9}-django32
7-
py3{8,9}-django40
8-
py3{8,9}-django41
9-
py3{8,9}-main
6+
py3{6,7,8,9,10}-django32
7+
py3{8,9,10}-django40
8+
py3{8,9,10}-django41
9+
py3{8,9,10}-main
1010

1111
[testenv]
1212
basepython =
@@ -15,6 +15,7 @@ basepython =
1515
py37: python3.7
1616
py38: python3.8
1717
py39: python3.9
18+
py310: python3.10
1819
commands = {envpython} setup.py test
1920
setenv=
2021
PYTHONWARNINGS=default

0 commit comments

Comments
 (0)