Skip to content

Commit 5d13d86

Browse files
committed
Expand test matrix
1 parent 67032d8 commit 5d13d86

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.11", "3.10", "3.9"]
19+
python-version: ["3.12", "3.11", "3.10", "3.9"]
2020
steps:
2121
- name: Checkout
2222
run: |

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ Because this is a project and not really a reuse-able-app ;)
222222
[comment]: <> (✂✂✂ auto generated history start ✂✂✂)
223223

224224
* [v0.18.0.dev1](https://github.com/jedie/django-for-runners/compare/v0.17.4...v0.18.0.dev1)
225+
* 2024-08-02 - Expand test matrix
225226
* 2024-08-02 - Bugfix CI: Add "*.snapshot.json" files ;)
226227
* 2024-08-02 - Add https://pre-commit.com hook
227228
* 2024-08-02 - Replace "safety" by "pip-audit"

manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def print_no_pip_error():
3434
sys.exit(-1)
3535

3636

37-
assert sys.version_info >= (3, 10), f'Python version {sys.version_info} is too old!'
37+
assert sys.version_info >= (3, 9), f'Python version {sys.version_info} is too old!'
3838

3939

4040
if sys.platform == 'win32': # wtf

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ exclude_lines = [
175175
legacy_tox_ini = """
176176
[tox]
177177
isolated_build = True
178-
envlist = py{311,310,39}
178+
envlist = py{312,311,310,39}
179179
skip_missing_interpreters = True
180180
181181
[testenv]

0 commit comments

Comments
 (0)