Skip to content

Commit 8f0bda3

Browse files
authored
Merge pull request #76 from p1c2u/feature/end-of-python34-support
End of Python 3.4 support
2 parents ed893d5 + a1092b7 commit 8f0bda3

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ matrix:
1616
allow_failures:
1717
- python: 3.2 # EOL
1818
- python: 3.3 # EOL
19+
- python: 3.4 # EOL
1920
- python: nightly
2021
before_install:
2122
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install 'coverage<4.0.0'; fi

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ def run_tests(self):
8787
"Topic :: Software Development :: Libraries :: Python Modules",
8888
"Operating System :: OS Independent",
8989
"Programming Language :: Python :: 2.7",
90-
"Programming Language :: Python :: 3.4",
9190
"Programming Language :: Python :: 3.5",
9291
"Programming Language :: Python :: 3.6",
9392
"Programming Language :: Python :: 3.7",

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,py34,py35,py36}-{default,simplejson}
2+
envlist = {py27,py35,py36}-{default,simplejson}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)