Skip to content

Commit

Permalink
Alter testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmoreton committed Jul 12, 2024
1 parent d92bbd5 commit b043ecf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.9", "3.10", "3.11", "3.12"]
database: ["sqlite"]

steps:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.12"]
database: ["postgres"]

services:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.12"]
database: ["mysql"]

services:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.

## Unreleased

- Drop support for Python 3.8 & add support for Python 3.12
- Drop support for Django 3.2, 4.1 & Wagtail 4.0, 4.1, 4.2
- Add support for Django 5.0
- Update pr-commit config
- Fix typo in docs

Expand Down
11 changes: 5 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ usedevelop = True
isolated_build = True

envlist =
py{38,39,310}-django{32,41}-wagtail{41,51,52}-{sqlite,postgres,mysql}
py{311}-django{42}-wagtail{52}-{sqlite,postgres,mysql}
py{39}-django{42}-wagtail{51,52}-sqlite
py{310,311,312}-django{50}-wagtail{52}-sqlite
py{312}-django{50}-wagtail{52}-{postgres,mysql}

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[gh-actions:env]
DATABASE =
Expand All @@ -29,11 +30,9 @@ commands =
deps =
coverage

django32: Django>=3.2,<4.0
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
django50: Django>=5.0,<5.1

wagtail41: wagtail>=4.1,<4.2
wagtail51: wagtail>=5.1,<5.2
wagtail52: wagtail>=5.2,<5.3

Expand Down

0 comments on commit b043ecf

Please sign in to comment.