Skip to content

Commit d612811

Browse files
hramezanibluetech
authored andcommitted
Drop Python 3.5 support.
1 parent 5c6c937 commit d612811

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,8 @@ jobs:
105105
allow_failure: true
106106

107107
# Explicitly test (older) pytest 5.4.
108-
- name: py35-dj22-postgres-pytest54-coverage
109-
python: 3.5
110-
allow_failure: false
111-
112-
- name: py35-dj22-sqlite_file-coverage
113-
python: 3.5
108+
- name: py36-dj22-postgres-psycopg28-pytest54-coverage
109+
python: 3.6
114110
allow_failure: false
115111

116112
- name: py36-dj32-mysql_myisam-coverage

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pytest-django allows you to test your Django project/applications with the
3434

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

4040
For compatibility with older versions, use the pytest-django 3.*.* series.

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers =
2020
License :: OSI Approved :: BSD License
2121
Operating System :: OS Independent
2222
Programming Language :: Python
23-
Programming Language :: Python :: 3.5
2423
Programming Language :: Python :: 3.6
2524
Programming Language :: Python :: 3.7
2625
Programming Language :: Python :: 3.8
@@ -35,7 +34,7 @@ project_urls =
3534

3635
[options]
3736
packages = pytest_django
38-
python_requires = >=3.5
37+
python_requires = >=3.6
3938
setup_requires = setuptools_scm>=5.0.0
4039
install_requires = pytest>=5.4.0
4140
zip_safe = no

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ envlist =
55
py38-dj{main,40,32,22}-postgres
66
py37-dj{32,22}-postgres
77
py36-dj{32,22}-postgres
8-
py35-dj{22}-postgres
98
linting
109

1110
[testenv]

0 commit comments

Comments
 (0)