Skip to content

Commit

Permalink
Stop testing on py34 and 36.
Browse files Browse the repository at this point in the history
  • Loading branch information
koenedaele committed Oct 2, 2020
1 parent fc7a0b5 commit 40d393e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -2,9 +2,9 @@ sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
install:
- pip install -r requirements.txt
- python setup.py develop
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -28,9 +28,9 @@
'Development Status :: 5 - Production/Stable',
"Programming Language :: Python",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Intended Audience :: Developers",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, cover
envlist = py27, py36, py37, py38, cover

[testenv]
commands =
Expand All @@ -13,7 +13,7 @@ deps =

[testenv:cover]
basepython =
python2.7
python3.6
commands =
python setup.py develop
pip install -r requirements.txt
Expand Down

0 comments on commit 40d393e

Please sign in to comment.