Skip to content

Commit e6ff075

Browse files
hugovkblueyed
authored andcommitted
Drop support for EOL Python 3.4
1 parent 1625ece commit e6ff075

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ jobs:
4141
services:
4242
- postgresql
4343

44-
- python: 3.4
45-
env: TOXENV=py34-dj19-sqlite_file-coverage
46-
4744
- python: 2.7
4845
env: TOXENV=py27-dj111-mysql_myisam-coverage
4946
services:

README.rst

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

3131
* Django: 1.8-1.11, 2.0-2.2,
3232
and latest master branch (compatible at the time of each release)
33-
* Python: CPython 2.7, 3.4-3.7 or PyPy 2, 3
33+
* Python: CPython 2.7, 3.5+ or PyPy 2, 3
3434
* pytest: >=3.6
3535

3636
* Licence: BSD

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def read(fname):
2828
license='BSD-3-Clause',
2929
packages=['pytest_django'],
3030
long_description=read('README.rst'),
31-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
31+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
3232
setup_requires=['setuptools_scm>=1.11.1'],
3333
install_requires=[
3434
'pytest>=3.6',
@@ -59,8 +59,9 @@ def read(fname):
5959
'License :: OSI Approved :: BSD License',
6060
'Operating System :: OS Independent',
6161
'Programming Language :: Python',
62+
'Programming Language :: Python :: 2',
6263
'Programming Language :: Python :: 2.7',
63-
'Programming Language :: Python :: 3.4',
64+
'Programming Language :: Python :: 3',
6465
'Programming Language :: Python :: 3.5',
6566
'Programming Language :: Python :: 3.6',
6667
'Programming Language :: Python :: 3.7',

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ envlist =
33
py37-dj{30,22,21,20,111}-postgres
44
py36-dj{30,22,21,20,111,110,19,18}-postgres
55
py35-dj{22,21,20,111,110,19,18}-postgres
6-
py34-dj{20,111,110}-postgres
76
py27-dj{111,110}-{mysql_innodb,mysql_myisam,postgres}
87
py27-dj{111,110,19,18}-postgres
98
checkqa

0 commit comments

Comments
 (0)