Skip to content

Commit

Permalink
Add Django 4.2 in the tox envlist (GH-31)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtyomVancyan authored Jun 10, 2023
2 parents b1b697a + 2895cfd commit c06f469
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ jobs:
- python: "3.11"
env: py311-django41

- python: "3.9"
env: py39-django42
- python: "3.10"
env: py310-django42
- python: "3.11"
env: py311-django42

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
Expand All @@ -54,4 +61,4 @@ jobs:
sh build.sh
pip install tox tox-gh-actions
- name: Run tests using tox
run: tox -e ${{ matrix.env }}
run: tox -e ${{ matrix.env }}
2 changes: 1 addition & 1 deletion src/django_forbid/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ envlist =
py{36,38,39}-django21
py{36,38,310}-django32
py{38,39,310}-django40
py{39,310,311}-django{41,main}
py{39,310,311}-django{41,42}
py{310,311}-djangomain

[testenv]
deps =
Expand All @@ -17,4 +18,4 @@ deps =
allowlist_externals = sh
commands =
sh build.sh
pytest
pytest

0 comments on commit c06f469

Please sign in to comment.