Add Python 3.10 for Django 3.2 and main test.

This commit is contained in:
Hasan Ramezani 2021-11-01 15:38:09 +01:00 committed by Aleksi Häkli
parent f888457546
commit 63b100c748
3 changed files with 11 additions and 3 deletions

View file

@ -15,13 +15,18 @@ jobs:
include: include:
- python-version: '3.8' - python-version: '3.8'
django-version: 'qa' django-version: 'qa'
# Django > 3.2 only supports >= Python 3.8 # Django >= 3.2 only supports >= Python 3.8
- python-version: '3.10'
django-version: '3.2'
- python-version: '3.8' - python-version: '3.8'
django-version: 'main' django-version: 'main'
experimental: true experimental: true
- python-version: '3.9' - python-version: '3.9'
django-version: 'main' django-version: 'main'
experimental: true experimental: true
- python-version: '3.10'
django-version: 'main'
experimental: true
- python-version: 'pypy3' - python-version: 'pypy3'
django-version: 'main' django-version: 'main'
experimental: true experimental: true

View file

@ -10,8 +10,9 @@ DJANGO_SETTINGS_MODULE = "tests.settings"
legacy_tox_ini = """ legacy_tox_ini = """
[tox] [tox]
envlist = envlist =
py{36,37,38,39,py3}-dj{22,31,32} py{36,37,38,39,py3}-dj{22,31}
py{38,39}-djmain py{36,37,38,39,310}-dj32
py{38,39,310}-djmain
py38-djqa py38-djqa
[gh-actions] [gh-actions]
@ -20,6 +21,7 @@ python =
3.7: py37 3.7: py37
3.8: py38 3.8: py38
3.9: py39 3.9: py39
3.10: py310
pypy3: pypy3 pypy3: pypy3
[gh-actions:env] [gh-actions:env]

View file

@ -57,6 +57,7 @@ setup(
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: Log Analysis", "Topic :: Internet :: Log Analysis",