From 43e6fcdf136362de6fb17307426ff3b04436f416 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Mon, 13 Dec 2021 21:12:33 +0100 Subject: [PATCH] Confirm support for Python 3.10. --- .github/workflows/test.yml | 2 +- CHANGES.rst | 1 + README.rst | 2 +- setup.py | 1 + tox.ini | 3 ++- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 78983ae..4f5a21c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false max-parallel: 5 matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy-3.8'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.8'] steps: - uses: actions/checkout@v2 diff --git a/CHANGES.rst b/CHANGES.rst index e37b88d..38f77ea 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,7 @@ Changes - Drop Django 3.1 support. - Confirm support for Django 4.0 +- Confirm support for Python 3.10 0.9.1 ----- diff --git a/README.rst b/README.rst index fabd68e..6f48093 100644 --- a/README.rst +++ b/README.rst @@ -108,7 +108,7 @@ Admin pages Requirements ------------ -* Python: 3.6, 3.7, 3.8, 3.9, PyPy +* Python: 3.6, 3.7, 3.8, 3.9, 3.10, PyPy * Django: 2.2, 3.x, 4.x * Redis diff --git a/setup.py b/setup.py index 3a8dfb8..d657a1a 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ setup( "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", diff --git a/tox.ini b/tox.ini index 5f0906d..9f9e88f 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist = # list of supported Django/Python versions: py{36,37,38,39,py3}-dj{22,32} - py{38,39}-dj{40,main} + py{38,39,310}-dj{40,main} py38-{lint,docs} [gh-actions] @@ -11,6 +11,7 @@ python = 3.7: py37 3.8: py38 3.9: py39 + 3.10: py310 pypy3: pypy3 [testenv]