Skip to content

Commit 53248e4

Browse files
Removed Django 3.2 / 4.1 from the test matrix. Added Django 5.0 to the test matrix.
1 parent bfbaf7f commit 53248e4

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/ci-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: [3.9, '3.10', 3.11]
12-
django: [3.2, '4.1', 4.2]
11+
python: ['3.10', '3.11', '3.12']
12+
django: ['4.2', '5.0']
1313
bootstrap: [3, 4, 5]
1414

1515
steps:

tox.ini

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ skipsdist = True
1111
recreate = True
1212
skip_missing_interpreters=true
1313
envlist =
14-
py{3.9,3.10,3.11}-django-{3.2,4.1,4.2}-bs{3,4,5}
14+
py{3.10,3.11,3.12}-django-{4.2,5.0}-bs{3,4,5}
1515
# py3.10-django-{4.1,master}-bs{3,4,5}
1616
[testenv]
1717
basepython =
18-
py3.9: python3.9
1918
py3.10: python3.10
2019
py3.11: python3.11
20+
py3.12: python3.12
2121
# usedevelop = true
2222
# whitelist_externals = make
2323
# commands = make test
@@ -41,12 +41,10 @@ deps =
4141
bs3: git+https://github.com/Dmitri-Sintsov/djk-bootstrap3.git
4242
bs4: git+https://github.com/Dmitri-Sintsov/djk-bootstrap4.git
4343
bs5: git+https://github.com/Dmitri-Sintsov/djk-bootstrap5.git
44-
django-3.2: Django>=3.2,<4.0
45-
django-3.2: django-allauth
46-
django-4.1: Django>=4.1,<4.2
47-
django-4.1: django-allauth
4844
django-4.2: Django>=4.2,<4.3
4945
django-4.2: django-allauth
46+
django-5.0: Django>=5.0,<5.1
47+
django-5.0: django-allauth
5048
# django-master: https://github.com/django/django/archive/master.tar.gz
5149
-r{toxinidir}/requirements/dev.txt
5250
-r{toxinidir}/requirements/test.txt

0 commit comments

Comments
 (0)