Skip to content

Commit 1365d14

Browse files
authored
Merge pull request #23 from hackebrot/drop-python-33-support
Drop Python 3.3 support
2 parents 443ad61 + 2011902 commit 1365d14

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ matrix:
77
include:
88
- python: 2.7
99
env: TOX_ENV=py27
10-
- python: 3.3
11-
env: TOX_ENV=py33
1210
- python: 3.4
1311
env: TOX_ENV=py34
1412
- python: 3.5

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Before you submit a pull request, check that it meets these guidelines:
145145
new functionality into a function with a docstring, and add the feature to
146146
the list in README.rst.
147147
148-
3. The pull request should work for Python 2.7, 3.3, 3.4 and 3.5, and for PyPy.
148+
3. The pull request should work for Python 2.7, 3.4 and 3.5, and for PyPy.
149149
Check [travis pull requests][travis] and make sure that the tests pass for
150150
all supported Python versions.
151151

appveyor.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ environment:
66
- PYTHON: "C:\\Python27-x64"
77
TOX_ENV: "py27"
88

9-
- PYTHON: "C:\\Python33-x64"
10-
TOX_ENV: "py33"
11-
129
- PYTHON: "C:\\Python34-x64"
1310
TOX_ENV: "py34"
1411

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ def read(fname):
2323
description='A Pytest plugin for your Cookiecutter templates',
2424
long_description=read('README.rst'),
2525
py_modules=['pytest_cookies'],
26+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
2627
install_requires=[
27-
'pytest>=2.8.1',
28+
'pytest>=3.3.0',
2829
'cookiecutter>=1.4.0'
2930
],
3031
classifiers=[
@@ -35,7 +36,6 @@ def read(fname):
3536
'Programming Language :: Python :: 2',
3637
'Programming Language :: Python :: 2.7',
3738
'Programming Language :: Python :: 3',
38-
'Programming Language :: Python :: 3.3',
3939
'Programming Language :: Python :: 3.4',
4040
'Programming Language :: Python :: 3.5',
4141
'Programming Language :: Python :: 3.6',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,py36,pypy,flake8
2+
envlist = py27,py34,py35,py36,pypy,flake8
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)