Drop support for EOL Python 3.4

This commit is contained in:
Hugo
2019-12-02 17:56:08 +02:00
parent 3a87f367fe
commit 8f1e6ad10c
4 changed files with 3 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
environment: environment:
matrix: matrix:
- TOXENV: "py27-pytestlatest" - TOXENV: "py27-pytestlatest"
- TOXENV: "py34-pytestlatest"
- TOXENV: "py35-pytestlatest" - TOXENV: "py35-pytestlatest"
- TOXENV: "py36-pytestlatest" - TOXENV: "py36-pytestlatest"
- TOXENV: "py37-pytestlatest" - TOXENV: "py37-pytestlatest"

View File

@@ -36,9 +36,7 @@ jobs:
env: TOXENV=py27-pytestlatest env: TOXENV=py27-pytestlatest
- stage: test - stage: test
python: "3.4" python: "3.5"
env: TOXENV=py34-pytestlatest
- python: "3.5"
env: TOXENV=py35-pytestlatest env: TOXENV=py35-pytestlatest
- python: "3.6" - python: "3.6"
env: TOXENV=py36-pytestlatest env: TOXENV=py36-pytestlatest

View File

@@ -24,7 +24,7 @@ setup(
"pytest11": ["xdist = xdist.plugin", "xdist.looponfail = xdist.looponfail"] "pytest11": ["xdist = xdist.plugin", "xdist.looponfail = xdist.looponfail"]
}, },
zip_safe=False, zip_safe=False,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=install_requires, install_requires=install_requires,
setup_requires=["setuptools_scm"], setup_requires=["setuptools_scm"],
classifiers=[ classifiers=[
@@ -42,7 +42,6 @@ setup(
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",

View File

@@ -1,7 +1,7 @@
[tox] [tox]
envlist= envlist=
linting linting
py{27,34,35,36,37,38}-pytestlatest py{27,35,36,37,38}-pytestlatest
py38-pytest{master,features} py38-pytest{master,features}
[testenv] [testenv]