Skip to content

Commit e62477f

Browse files
committed
Drop support for EOL Python 3.4
1 parent 4da806b commit e62477f

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ language: python
33

44
python:
55
- '2.7'
6-
- '3.4'
76
- '3.5'
87
- '3.6'
98
- '3.7'

doc/install.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ installation info in a nutshell
77

88
**PyPI name**: py_
99

10-
**Pythons**: CPython 2.7, 3.4, 3.5, 3.6, 3.7, PyPy-5.4
10+
**Pythons**: CPython 2.7, 3.5, 3.6, 3.7, PyPy-5.4
1111

1212
**Operating systems**: Linux, Windows, OSX, Unix
1313

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def main():
88
long_description=open('README.rst').read(),
99
use_scm_version={"write_to": "py/_version.py"},
1010
setup_requires=["setuptools-scm"],
11-
url='http://py.readthedocs.io/',
11+
url='https://py.readthedocs.io/',
1212
license='MIT license',
1313
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
14-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
14+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
1515
author='holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others',
1616
author_email='[email protected]',
1717
classifiers=['Development Status :: 6 - Mature',
@@ -27,7 +27,6 @@ def main():
2727
'Programming Language :: Python :: 2',
2828
'Programming Language :: Python :: 2.7',
2929
'Programming Language :: Python :: 3',
30-
'Programming Language :: Python :: 3.4',
3130
'Programming Language :: Python :: 3.5',
3231
'Programming Language :: Python :: 3.6',
3332
'Programming Language :: Python :: 3.7',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# Skip py37-pytest29 as such a combination does not work (#192)
3-
envlist=py{27,34,35,36}-pytest{29,30,31},py37-pytest{30,31}
3+
envlist=py{27,35,36}-pytest{29,30,31},py37-pytest{30,31}
44

55
[testenv]
66
commands=

0 commit comments

Comments
 (0)