Skip to content

Commit

Permalink
Drop support for EOL Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 31, 2020
1 parent 3b76be7 commit bb15c9b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: python

python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
Expand Down
2 changes: 1 addition & 1 deletion doc/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ installation info in a nutshell

**PyPI name**: py_

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

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

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def main():
long_description=open('README.rst').read(),
use_scm_version={"write_to": "py/_version.py"},
setup_requires=["setuptools-scm"],
url='http://py.readthedocs.io/',
url='https://py.readthedocs.io/',
license='MIT license',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
Expand All @@ -27,7 +27,6 @@ def main():
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
# Skip py37-pytest29 as such a combination does not work (#192)
envlist=py{27,34,35,36}-pytest{29,30,31},py37-pytest{30,31}
envlist=py{27,35,36}-pytest{29,30,31},py37-pytest{30,31}

[testenv]
commands=
Expand Down

0 comments on commit bb15c9b

Please sign in to comment.