Skip to content

Commit

Permalink
bump build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Feb 5, 2024
1 parent 8488090 commit b9affce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,24 @@ jobs:
fail-fast: false
matrix:
include:
# Django 2.2
- django: "2.2"
python: "3.6"
# Django 3.1
- django: "3.1"
python: "3.6"
# Django 3.2
- django: "3.2"
python: "3.6"
# Django 4.0
- django: "4.0b1"
python: "3.8"
# Django 4.2
- django: "4.2"
python: "3.10"
- django: "5.0"
python: "3.11"

steps:
- name: Install gettext
run: sudo apt-get install -y gettext

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand All @@ -51,4 +47,4 @@ jobs:
echo "Python ${{ matrix.python }} / Django ${{ matrix.django }}"
coverage run --rcfile=.coveragerc runtests.py
codecov
continue-on-error: ${{ contains(matrix.django, '4.0') }}
continue-on-error: ${{ contains(matrix.django, '5.1') }}
9 changes: 4 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
[tox]
envlist=
py36-django{22,31,32},
py37-django{22,31,32},
py38-django{22,31,32},
py38-django{32},
py310-django{42,50},
docs,

[testenv]
deps =
django-wysiwyg
django-fluent-pages>=2.0.7
django-fluent-contents>=2.0.7
django22: Django ~= 2.2
django31: Django ~= 3.1
django32: Django ~= 3.2
django42: Django ~= 4.2
django50: Django ~= 5.0
django-dev: https://github.com/django/django/tarball/main
commands=
python --version
Expand Down

0 comments on commit b9affce

Please sign in to comment.