Skip to content

Commit 9a84247

Browse files
committed
Drop support for Python 3.4
Add testing for Python 3.7. Signed-off-by: Stephen Finucane <stephen@that.guru>
1 parent 02b638c commit 9a84247

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ sudo: false
33
cache: pip
44
python:
55
- 2.7
6-
- 3.4
76
- 3.5
87
- 3.6
8+
- 3.7
99
- pypy
1010
install:
1111
- pip install tox-travis
@@ -17,7 +17,7 @@ stages:
1717
jobs:
1818
include:
1919
- stage: deploy
20-
python: 3.6
20+
python: 3.7
2121
install: skip # no tests, no depedencies needed
2222
script: skip # we're not running tests
2323
deploy:
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
upgrade:
3+
- |
4+
Support for Python 3.4 has been dropped.

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ license = MIT License
66
classifiers =
77
Programming Language :: Python :: 2.7
88
Programming Language :: Python :: 3
9+
Programming Language :: Python :: 3.5
10+
Programming Language :: Python :: 3.6
11+
Programming Language :: Python :: 3.7
912
Programming Language :: Python
1013
Development Status :: 4 - Beta
1114
Environment :: Console
@@ -18,6 +21,7 @@ author = Stephen Finucane
1821
author-email = stephen@that.guru
1922
home-page = https://git-pw.readthedocs.io/
2023
project-url = https://that.guru/
24+
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
2125

2226
[files]
2327
packages =

0 commit comments

Comments
 (0)