summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@paylead.fr>2021-11-08 14:17:52 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2021-11-08 14:56:48 +0100
commit63720c70dd538234e75914e2afb80b94d5e88a1f (patch)
tree67a569e96646efca40f19f8d40a6968da796a4c4
parentf67ece3b0aaac69f4d331b213090ed78e6ba46d7 (diff)
downloadsemantic-version-63720c70dd538234e75914e2afb80b94d5e88a1f.tar.gz
Extend test matrix for Python 3.10 / Django 3.2
Django >=3.2.9 is compatible with Python 3.10
-rw-r--r--.github/workflows/test.yml12
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini6
3 files changed, 11 insertions, 8 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 5101fd2..7eb4638 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -33,15 +33,17 @@ jobs:
- python-version: "pypy3"
django-family: 22
- # Django 3.1: Python 3.6, 3.8, 3.9
+ # Django 3.2: Python 3.6, 3.8, 3.9, 3.10
- python-version: "3.6"
- django-family: 31
+ django-family: 32
- python-version: "3.8"
- django-family: 31
+ django-family: 32
- python-version: "3.9"
- django-family: 31
+ django-family: 32
+ - python-version: "3.10"
+ django-family: 32
- python-version: "pypy3"
- django-family: 31
+ django-family: 32
env:
TOXENV: django${{ matrix.django-family }}
diff --git a/setup.cfg b/setup.cfg
index 42360d4..e7fd5e9 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -26,6 +26,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries :: Python Modules
[options]
diff --git a/tox.ini b/tox.ini
index f1cb1be..31e6e34 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,8 +2,8 @@
envlist =
py{27,34,35,36,37}-django111
py{35,36,37,38}-django22
- py{36,37,38,39}-django31
- pypy3-django{111,22,31}
+ py{36,37,38,39,310}-django32
+ pypy3-django{111,22,32}
lint
toxworkdir = {env:TOX_WORKDIR:.tox}
@@ -13,7 +13,7 @@ extras = dev
deps =
django111: Django>=1.11,<1.12
django22: Django>=2.2,<2.3
- django31: Django>=3.1,<3.2
+ django32: Django>=3.2,<3.3
whitelist_externals = make
commands = make test