Skip to content

Commit 0e99d11

Browse files
committed
Test against Django 3.2
And drop tests on the now-EOL 3.0
1 parent 93342b9 commit 0e99d11

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
- lint-conjecture-rust
3838
- check-nose
3939
- check-pytest46
40+
- check-django32
4041
- check-django31
41-
- check-django30
4242
- check-django22
4343
- check-pandas111
4444
- check-pandas100

hypothesis-python/tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ commands =
5353
pip install django~=2.2.0
5454
python -m tests.django.manage test tests.django
5555

56-
[testenv:django30]
56+
[testenv:django31]
5757
commands =
5858
pip install .[pytz]
59-
pip install django~=3.0.10
59+
pip install django~=3.1.1
6060
python -m tests.django.manage test tests.django
6161

62-
[testenv:django31]
62+
[testenv:django32]
6363
commands =
6464
pip install .[pytz]
65-
pip install django~=3.1.1
65+
pip install django~=3.2.0
6666
python -m tests.django.manage test tests.django
6767

6868
[testenv:nose]

tooling/src/hypothesistooling/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def standard_tox_task(name):
414414
standard_tox_task("nose")
415415
standard_tox_task("pytest46")
416416

417-
for n in [22, 30, 31]:
417+
for n in [22, 31, 32]:
418418
standard_tox_task(f"django{n}")
419419
for n in [25, 100, 111]:
420420
standard_tox_task(f"pandas{n}")

0 commit comments

Comments
 (0)