Skip to content

Commit fdbdb8b

Browse files
committed
Drop support for Python 3.4. Closes python#76.
1 parent cae59dc commit fdbdb8b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ qa:
1111

1212
tests:
1313
script:
14-
- tox -e py27,py34,py35,py36,py37,py38
14+
- tox -e py27,py35,py36,py37,py38
1515

1616
coverage:
1717
script:
18-
- tox -e py27-cov,py34-cov,py35-cov,py36-cov
18+
- tox -e py27-cov,py35-cov,py36-cov
1919
artifacts:
2020
paths:
2121
- coverage.xml
2222

2323
diffcov:
2424
script:
25-
- tox -e py27-diffcov,py34-diffcov,py35-diffcov,py36-diffcov
25+
- tox -e py27-diffcov,py35-diffcov,py36-diffcov
2626

2727
docs:
2828
script:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers =
1616
Programming Language :: Python :: 3
1717

1818
[options]
19-
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
19+
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
2020
setup_requires =
2121
setuptools
2222
wheel

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
# Don't cover Python 3.7 since this is just a shim for that version. Do at
33
# least make sure we don't regress!
4-
envlist = {py27,py34,py35,py36}{,-cov,-diffcov},{py37,py38},qa,docs
4+
envlist = {py27,py35,py36}{,-cov,-diffcov},{py37,py38},qa,docs
55
skip_missing_interpreters = True
66

77

@@ -30,7 +30,7 @@ setenv =
3030
cov: COVERAGE_OPTIONS="-p"
3131
cov: COVERAGE_FILE={toxinidir}/.coverage
3232
py27: OMIT=3
33-
py34,py35,py36,py37,py38: OMIT=2
33+
py35,py36,py37,py38: OMIT=2
3434

3535

3636
[testenv:qa]

0 commit comments

Comments
 (0)