Skip to content

Commit 760c9e1

Browse files
committed
Drop support for Python 3.4. Closes #99.
1 parent 206fe3c commit 760c9e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ classifiers =
1515
Programming Language :: Python :: 2
1616

1717
[options]
18-
python_requires = >=2.7,!=3.0,!=3.1,!=3.2,!=3.3
18+
python_requires = >=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4
1919
setup_requires = setuptools-scm
2020
install_requires =
2121
zipp>=0.5
22-
pathlib2; python_version=='3.4.*' or python_version < '3'
22+
pathlib2; python_version < '3'
2323
contextlib2; python_version < '3'
2424
configparser>=3.5; python_version < '3'
2525
packages = find:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ setenv =
3333
cov: COVERAGE_OPTIONS="-p"
3434
cov: COVERAGE_FILE={toxinidir}/.coverage
3535
py27: PYV=2
36-
py34,py35,py36,py37,py38: PYV=3
36+
py35,py36,py37,py38: PYV=3
3737
# workaround deprecation warnings in pip's vendored packages
3838
PYTHONWARNINGS=ignore:Using or importing the ABCs:DeprecationWarning:pip._vendor
3939
extras =

0 commit comments

Comments
 (0)