Skip to content

Commit ba8f9d6

Browse files
hugovkblueyed
authored andcommitted
Update supported versions (#548)
* Add python_requires * Update version classifiers * EOL Python 3.3 no longer supported
1 parent 2611a5c commit ba8f9d6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ pytest-django allows you to test your Django project/applications with the
2929
* Version compatibility:
3030

3131
* Django: 1.8-1.11 and latest master branch (compatible at the time of each release)
32-
* Python: CPython 2.7,3.3-3.6 or PyPy 2,3
32+
* Python: CPython 2.7, 3.4-3.6 or PyPy 2, 3
3333
* pytest: >2.9.x
3434

3535
* Licence: BSD
3636
* Project maintainers: Andreas Pelme, Floris Bruynooghe and Daniel Hahler
3737
* `All contributors <https://github.com/pytest-dev/pytest-django/contributors>`_
38-
* Github repository: https://github.com/pytest-dev/pytest-django
38+
* GitHub repository: https://github.com/pytest-dev/pytest-django
3939
* `Issue tracker <http://github.com/pytest-dev/pytest-django/issues>`_
4040
* `Python Package Index (PyPI) <https://pypi.python.org/pypi/pytest-django/>`_
4141

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +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.*',
3132
setup_requires=['setuptools_scm>=1.11.1'],
3233
install_requires=['pytest>=2.9'],
3334
classifiers=['Development Status :: 5 - Production/Stable',
@@ -38,11 +39,11 @@ def read(fname):
3839
'Programming Language :: Python',
3940
'Topic :: Software Development :: Testing',
4041
'Programming Language :: Python :: 2.7',
41-
'Programming Language :: Python :: 3.2',
42-
'Programming Language :: Python :: 3.3',
4342
'Programming Language :: Python :: 3.4',
4443
'Programming Language :: Python :: 3.5',
4544
'Programming Language :: Python :: 3.6',
45+
'Programming Language :: Python :: Implementation :: CPython',
46+
'Programming Language :: Python :: Implementation :: PyPy',
4647
],
4748
# the following makes a plugin available to pytest
4849
entry_points={'pytest11': ['django = pytest_django.plugin']})

tox.ini

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
envlist =
33
- py{35,36}-dj{20,111,110,19,18}-postgres
44
- py34-dj{20,111,110}-postgres
5-
- py33-dj18-postgres
65
- py27-dj{111,110}-{mysql_innodb,mysql_myisam,postgres}
76
- py27-dj{111,110,19,18}-postgres
87
- py{36,py27}-checkqa

0 commit comments

Comments
 (0)