Skip to content

Commit 8f1e6ad

Browse files
committed
Drop support for EOL Python 3.4
1 parent 3a87f36 commit 8f1e6ad

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
environment:
22
matrix:
33
- TOXENV: "py27-pytestlatest"
4-
- TOXENV: "py34-pytestlatest"
54
- TOXENV: "py35-pytestlatest"
65
- TOXENV: "py36-pytestlatest"
76
- TOXENV: "py37-pytestlatest"

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ jobs:
3636
env: TOXENV=py27-pytestlatest
3737

3838
- stage: test
39-
python: "3.4"
40-
env: TOXENV=py34-pytestlatest
41-
- python: "3.5"
39+
python: "3.5"
4240
env: TOXENV=py35-pytestlatest
4341
- python: "3.6"
4442
env: TOXENV=py36-pytestlatest

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"pytest11": ["xdist = xdist.plugin", "xdist.looponfail = xdist.looponfail"]
2525
},
2626
zip_safe=False,
27-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
27+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
2828
install_requires=install_requires,
2929
setup_requires=["setuptools_scm"],
3030
classifiers=[
@@ -42,7 +42,6 @@
4242
"Programming Language :: Python :: 2",
4343
"Programming Language :: Python :: 2.7",
4444
"Programming Language :: Python :: 3",
45-
"Programming Language :: Python :: 3.4",
4645
"Programming Language :: Python :: 3.5",
4746
"Programming Language :: Python :: 3.6",
4847
"Programming Language :: Python :: 3.7",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
linting
4-
py{27,34,35,36,37,38}-pytestlatest
4+
py{27,35,36,37,38}-pytestlatest
55
py38-pytest{master,features}
66

77
[testenv]

0 commit comments

Comments
 (0)