diff options
author | Thomas Grainger <tagrain@gmail.com> | 2021-03-04 10:00:48 +0000 |
---|---|---|
committer | Thomas Grainger <tagrain@gmail.com> | 2021-03-04 10:04:21 +0000 |
commit | d491e99b4cd33963c8b2cb1d206f84a2ab1615af (patch) | |
tree | 6ee6b0bc837cc7546b864b3b1e2c2d3362923410 | |
parent | 334e89c330e6e0b62d5cef25942d44e2a43c1a79 (diff) | |
download | subunit-git-d491e99b4cd33963c8b2cb1d206f84a2ab1615af.tar.gz |
drop Python 3.4 support
we cannot test with in on Travis anymore
-rw-r--r-- | .travis.yml | 1 | ||||
-rwxr-xr-x | setup.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index b5e2d34..03eb3ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ addons: language: python python: - "2.7" - - "3.4" - "3.5" - "3.6" - "3.7" @@ -90,5 +90,6 @@ setup( 'filters/subunit2pyunit', 'filters/tap2subunit', ], + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", **extra ) |