Skip to content

Commit a021df6

Browse files
committedOct 2, 2020
drop python3.4
1 parent fb91b99 commit a021df6

File tree

5 files changed

+2
-12
lines changed

5 files changed

+2
-12
lines changed
 

‎.gitlab-ci.yml

-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ python2:
2828
stage: test
2929
script: tox -e py27
3030

31-
python34:
32-
image: python:3.4
33-
stage: test
34-
script: tox -e py34
35-
3631
python35:
3732
image: python:3.5
3833
stage: test

‎.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ matrix:
1313
include:
1414
- python: 2.7
1515
env: TOXENV=py27
16-
- python: 3.4
17-
env: TOXENV=py34
1816
- python: 3.5
1917
env: TOXENV=py35
2018
- python: 3.6

‎dev-requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# https://github.com/pypa/virtualenv/issues/1963
2-
virtualenv!=20.0.32;python_version=="3.4"
31
tox

‎setup.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ classifiers =
2323
Programming Language :: Python :: 2
2424
Programming Language :: Python :: 2.7
2525
Programming Language :: Python :: 3
26-
Programming Language :: Python :: 3.4
2726
Programming Language :: Python :: 3.5
2827
Programming Language :: Python :: 3.6
2928
Programming Language :: Python :: 3.7
@@ -50,7 +49,7 @@ install_requires=
5049
functools32; python_version<"3.2"
5150
importlib-metadata; python_version<"3.8"
5251

53-
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
52+
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
5453

5554
[options.packages.find]
5655
where = src

‎tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion=2.3.1
3-
envlist = py27,py34,py35,py36,py37,py38,flake8,linters,docs
3+
envlist = py27,py35,py36,py37,py38,flake8,linters,docs
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)
Please sign in to comment.