Skip to content

Commit 95430c6

Browse files
authored
Merge pull request #63 from nibuno/upgrade-py311-313-django50-52
Upgrade Python Vesion to 3.11,3.12,313 and Django5.0, 5.1, 5.2
2 parents 6567957 + ebf8159 commit 95430c6

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,35 @@ jobs:
3232
toxenv: py310-4.0.X
3333
- python: "3.10"
3434
toxenv: py310-4.2.X
35+
- python: "3.10"
36+
toxenv: py310-5.0.X
37+
- python: "3.10"
38+
toxenv: py310-5.1.X
39+
- python: "3.10"
40+
toxenv: py310-5.2.X
41+
42+
- python: "3.11"
43+
toxenv: py311-4.2.X
44+
- python: "3.11"
45+
toxenv: py311-5.0.X
46+
- python: "3.11"
47+
toxenv: py311-5.1.X
48+
- python: "3.11"
49+
toxenv: py311-5.2.X
50+
51+
- python: "3.12"
52+
toxenv: py312-4.2.X
53+
- python: "3.12"
54+
toxenv: py312-5.0.X
55+
- python: "3.12"
56+
toxenv: py312-5.1.X
57+
- python: "3.12"
58+
toxenv: py312-5.2.X
59+
60+
- python: "3.13"
61+
toxenv: py313-5.1.X
62+
- python: "3.13"
63+
toxenv: py313-5.2.X
3564

3665
runs-on: ubuntu-latest
3766
steps:
@@ -41,5 +70,6 @@ jobs:
4170
python-version: ${{ matrix.versions.python }}
4271
- run: |
4372
pip install tox
73+
pip install setuptools
4474
python setup.py install_egg_info
4575
- run: tox -e ${{ matrix.versions.toxenv }}

tox.ini

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ envlist =
44
{py38,py39,py310}-3.2.X
55
{py38,py39,py310}-4.0.X
66
{py38,py39,py310}-4.1.X
7-
{py38,py39,py310}-4.2.X
7+
py{38,39,310,311,312}-4.2.X
8+
py{310,311,312}-5.0.X
9+
py{310,311,312,313}-5.1.X
10+
py{310,311,312,313}-5.2.X
811

912
[testenv]
1013
allowlist_externals=./run.sh
1114
basepython =
1215
py38: python3.8
1316
py39: python3.9
14-
py10: python3.10
17+
py310: python3.10
18+
py311: python3.11
19+
py312: python3.12
20+
py313: python3.13
1521

1622
commands =
1723
./run.sh test
@@ -24,6 +30,9 @@ deps =
2430
4.0.X: Django>=4.0,<4.1
2531
4.1.X: Django>=4.1,<4.2
2632
4.2.X: Django>=4.2,<5.0
33+
5.0.X: Django>=5.0,<5.1
34+
5.1.X: Django>=5.1,<5.2
35+
5.2.X: Django>=5.2,<6.0
2736
-r{toxinidir}/requirements.txt
2837

2938
[testenv:flake8]

0 commit comments

Comments
 (0)