Skip to content

Commit 092c1dc

Browse files
committed
[Fix] fix toxenv
1 parent 701b1ec commit 092c1dc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
python-version: ["3.8", "3.9", "3.10"]
20-
django-version: ["32", "40"]
20+
django-version: ["3.2", "4.0"]
2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: set up python ${{ matrix.python-version }}

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
22
envlist =
3-
py{38,39,310}-django{32,40}
3+
py-{3.8,3.9,3.10}-django-{3.2,4.0}
44
[testenv]
55
setenv =
66
PYTHONPATH = {toxinidir}:{toxinidir}/django_db_comments
77
commands = coverage run --source django_db_comments runtests.py
88
deps =
9-
django-32: Django>=3.2,<4.0
10-
django-40: Django>=4.0,<4.1
9+
django-3.2: Django>=3.2,<4.0
10+
django-4.0: Django>=4.0,<4.1
1111
-r{toxinidir}/requirements_test.txt

0 commit comments

Comments
 (0)