Skip to content

Commit c06f469

Browse files
Add Django 4.2 in the tox envlist (GH-31)
2 parents b1b697a + 2895cfd commit c06f469

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ jobs:
4242
- python: "3.11"
4343
env: py311-django41
4444

45+
- python: "3.9"
46+
env: py39-django42
47+
- python: "3.10"
48+
env: py310-django42
49+
- python: "3.11"
50+
env: py311-django42
51+
4552
steps:
4653
- uses: actions/checkout@v2
4754
- name: Set up Python ${{ matrix.python }}
@@ -54,4 +61,4 @@ jobs:
5461
sh build.sh
5562
pip install tox tox-gh-actions
5663
- name: Run tests using tox
57-
run: tox -e ${{ matrix.env }}
64+
run: tox -e ${{ matrix.env }}

src/django_forbid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.3"
1+
__version__ = "0.1.4"

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ envlist =
33
py{36,38,39}-django21
44
py{36,38,310}-django32
55
py{38,39,310}-django40
6-
py{39,310,311}-django{41,main}
6+
py{39,310,311}-django{41,42}
7+
py{310,311}-djangomain
78

89
[testenv]
910
deps =
@@ -17,4 +18,4 @@ deps =
1718
allowlist_externals = sh
1819
commands =
1920
sh build.sh
20-
pytest
21+
pytest

0 commit comments

Comments
 (0)