Skip to content

Commit 61b6839

Browse files
author
Daniel Grossmann-Kavanagh
committed
drop python3.3 support (EOL)
1 parent 42ee130 commit 61b6839

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ matrix:
1010
- python: nightly
1111
- python: pypy3
1212
allow_failures:
13-
- python: 3.2
13+
- python: 3.2 # EOL
14+
- python: 3.3 # EOL
1415
- python: nightly
1516
before_install:
1617
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install 'coverage<4.0.0'; fi
18+
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install 'pyflakes<2.0.0'; fi
1719
- pip install codecov
1820
install:
1921
- pip install -r requirements.txt

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ def run_tests(self):
8686
"Intended Audience :: Developers",
8787
"Topic :: Software Development :: Libraries :: Python Modules",
8888
"Operating System :: OS Independent",
89-
"Programming Language :: Python :: 3.3",
9089
"Programming Language :: Python :: 3.4",
9190
"Programming Language :: Python :: 3.5",
9291
"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 = {py33,py34,py35,py36}-{default,simplejson}
2+
envlist = {py34,py35,py36}-{default,simplejson}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)