mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Fixed #344 - Run tests on python 3.11
This commit is contained in:
parent
17ca033d33
commit
1f8bac5ba4
4 changed files with 7 additions and 2 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
fail-fast: false
|
||||
max-parallel: 5
|
||||
matrix:
|
||||
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
|
||||
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ Changelog
|
|||
unreleased
|
||||
^^^^^^^^^^
|
||||
|
||||
- Test Django 4.1.3+ on Python 3.11
|
||||
|
||||
v2.4 (2022-08-24)
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -62,6 +62,7 @@ setup(
|
|||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Programming Language :: Python :: 3.11',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
'Topic :: Utilities',
|
||||
],
|
||||
|
|
|
|||
4
tox.ini
4
tox.ini
|
|
@ -7,6 +7,7 @@ envlist =
|
|||
docs
|
||||
py{37,py37}-dj{32}
|
||||
py{38,py38,39,py39,310}-dj{32,40,41,main}
|
||||
py{311}-dj{41,main}
|
||||
|
||||
[gh-actions]
|
||||
python =
|
||||
|
|
@ -14,6 +15,7 @@ python =
|
|||
3.8: py38
|
||||
3.9: py39
|
||||
3.10: py310
|
||||
3.11: py311
|
||||
pypy-3.7: pypy37
|
||||
pypy-3.8: pypy38
|
||||
pypy-3.9: pypy39
|
||||
|
|
@ -27,7 +29,7 @@ setenv =
|
|||
deps =
|
||||
dj32: django~=3.2.9
|
||||
dj40: django~=4.0.0
|
||||
dj41: django~=4.1.0
|
||||
dj41: django~=4.1.3
|
||||
djmain: https://github.com/django/django/archive/main.tar.gz
|
||||
coverage
|
||||
coverage_enable_subprocess
|
||||
|
|
|
|||
Loading…
Reference in a new issue