Skip to content

Commit b62715b

Browse files
committed
Drop support for Django 3.1
1 parent d0f53b8 commit b62715b

File tree

4 files changed

+5
-23
lines changed

4 files changed

+5
-23
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,10 @@ jobs:
8080
python: 3.9
8181
allow_failure: false
8282

83-
- name: py39-dj31-postgres-xdist-coverage
84-
python: 3.9
85-
allow_failure: false
86-
8783
- name: py39-dj40-mysql_innodb-coverage
8884
python: 3.9
8985
allow_failure: false
9086

91-
- name: py37-dj31-mysql_innodb-coverage
92-
python: 3.7
93-
allow_failure: false
94-
9587
- name: py36-dj22-sqlite-xdist-coverage
9688
python: 3.6
9789
allow_failure: false
@@ -104,10 +96,6 @@ jobs:
10496
python: 3.8
10597
allow_failure: false
10698

107-
- name: py38-dj31-sqlite-xdist-coverage
108-
python: 3.8
109-
allow_failure: false
110-
11199
- name: py38-dj40-sqlite-xdist-coverage
112100
python: 3.8
113101
allow_failure: false
@@ -125,10 +113,6 @@ jobs:
125113
python: 3.5
126114
allow_failure: false
127115

128-
- name: py36-dj31-mysql_myisam-coverage
129-
python: 3.6
130-
allow_failure: false
131-
132116
- name: py36-dj32-mysql_myisam-coverage
133117
python: 3.6
134118
allow_failure: false

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pytest-django allows you to test your Django project/applications with the
3232
<https://pytest-django.readthedocs.io/en/latest/contributing.html>`_
3333
* Version compatibility:
3434

35-
* Django: 2.2, 3.1, 3.2, 4.0 and latest main branch (compatible at the time of
35+
* Django: 2.2, 3.2, 4.0 and latest main branch (compatible at the time of
3636
each release)
3737
* Python: CPython>=3.5 or PyPy 3
3838
* pytest: >=5.4

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ classifiers =
1414
Development Status :: 5 - Production/Stable
1515
Framework :: Django
1616
Framework :: Django :: 2.2
17-
Framework :: Django :: 3.1
1817
Framework :: Django :: 3.2
1918
Framework :: Django :: 4.0
2019
Intended Audience :: Developers

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
22
envlist =
33
py310-dj{main,40,32}-postgres
4-
py39-dj{main,40,32,31,22}-postgres
5-
py38-dj{main,40,32,31,22}-postgres
6-
py37-dj{32,31,22}-postgres
7-
py36-dj{32,31,22}-postgres
4+
py39-dj{main,40,32,22}-postgres
5+
py38-dj{main,40,32,22}-postgres
6+
py37-dj{32,22}-postgres
7+
py36-dj{32,22}-postgres
88
py35-dj{22}-postgres
99
linting
1010

@@ -14,7 +14,6 @@ deps =
1414
djmain: https://github.com/django/django/archive/main.tar.gz
1515
dj40: Django>=4.0,<4.1
1616
dj32: Django>=3.2,<4.0
17-
dj31: Django>=3.1,<3.2
1817
dj22: Django>=2.2,<2.3
1918

2019
mysql_myisam: mysqlclient==2.1.0

0 commit comments

Comments
 (0)