Skip to content

Commit bdc954b

Browse files
committed
Stop supporting EOL Python 3.4
Signed-off-by: Joffrey F <[email protected]>
1 parent 1aae20d commit bdc954b

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ matrix:
44
include:
55
- python: 2.7
66
env: TOXENV=py27
7-
- python: 3.4
8-
env: TOXENV=py34
97
- python: 3.5
108
env: TOXENV=py35
119
- python: 3.6

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
import codecs
55
import os
66

7-
from setuptools import setup, find_packages
7+
from setuptools import find_packages
8+
from setuptools import setup
89

910
ROOT_DIR = os.path.dirname(__file__)
1011
SOURCE_DIR = os.path.join(ROOT_DIR)
@@ -71,7 +72,7 @@
7172
install_requires=requirements,
7273
tests_require=test_requirements,
7374
extras_require=extras_require,
74-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
75+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
7576
zip_safe=False,
7677
test_suite='tests',
7778
classifiers=[
@@ -83,7 +84,6 @@
8384
'Programming Language :: Python :: 2',
8485
'Programming Language :: Python :: 2.7',
8586
'Programming Language :: Python :: 3',
86-
'Programming Language :: Python :: 3.4',
8787
'Programming Language :: Python :: 3.5',
8888
'Programming Language :: Python :: 3.6',
8989
'Programming Language :: Python :: 3.7',

test-requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
coverage==4.5.2
2-
flake8==3.6.0; python_version != '3.3'
3-
flake8==3.4.1; python_version == '3.3'
2+
flake8==3.6.0
43
mock==1.0.1
54
pytest==4.1.0
65
pytest-cov==2.6.1

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, py37, flake8
2+
envlist = py27, py35, py36, py37, flake8
33
skipsdist=True
44

55
[testenv]

0 commit comments

Comments
 (0)