Skip to content

Commit b9affce

Browse files
committed
bump build matrix
1 parent 8488090 commit b9affce

File tree

2 files changed

+12
-17
lines changed

2 files changed

+12
-17
lines changed

.github/workflows/tests.yaml

+8-12
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,24 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
include:
19-
# Django 2.2
20-
- django: "2.2"
21-
python: "3.6"
22-
# Django 3.1
23-
- django: "3.1"
24-
python: "3.6"
2519
# Django 3.2
2620
- django: "3.2"
27-
python: "3.6"
28-
# Django 4.0
29-
- django: "4.0b1"
21+
python: "3.8"
22+
# Django 4.2
23+
- django: "4.2"
3024
python: "3.10"
25+
- django: "5.0"
26+
python: "3.11"
3127

3228
steps:
3329
- name: Install gettext
3430
run: sudo apt-get install -y gettext
3531

3632
- name: Checkout code
37-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
3834

3935
- name: Setup Python ${{ matrix.python }}
40-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v4
4137
with:
4238
python-version: ${{ matrix.python }}
4339

@@ -51,4 +47,4 @@ jobs:
5147
echo "Python ${{ matrix.python }} / Django ${{ matrix.django }}"
5248
coverage run --rcfile=.coveragerc runtests.py
5349
codecov
54-
continue-on-error: ${{ contains(matrix.django, '4.0') }}
50+
continue-on-error: ${{ contains(matrix.django, '5.1') }}

tox.ini

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
[tox]
22
envlist=
3-
py36-django{22,31,32},
4-
py37-django{22,31,32},
5-
py38-django{22,31,32},
3+
py38-django{32},
4+
py310-django{42,50},
65
docs,
76

87
[testenv]
98
deps =
109
django-wysiwyg
1110
django-fluent-pages>=2.0.7
1211
django-fluent-contents>=2.0.7
13-
django22: Django ~= 2.2
14-
django31: Django ~= 3.1
1512
django32: Django ~= 3.2
13+
django42: Django ~= 4.2
14+
django50: Django ~= 5.0
1615
django-dev: https://github.com/django/django/tarball/main
1716
commands=
1817
python --version

0 commit comments

Comments
 (0)