Skip to content

Commit

Permalink
Dropped Python 3.4 support
Browse files Browse the repository at this point in the history
lxml no longer supports it making testing harder
  • Loading branch information
spookylukey committed Mar 22, 2020
1 parent 686ca61 commit 7615b99
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
Expand Down
File renamed without changes.
8 changes: 8 additions & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
coverage>=4.4.1
mock>=1.0.1
flake8>=2.1.0
codecov>=2.0.0
flake8-future-import>=0.4.5
django-functest==1.0.4
check-manifest
isort
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def get_version(*file_paths):
'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',
],
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
{py34,py35,py36,pypy3}-django20
{py27,py34,py35,py36,pypy,pypy3}-django111
{py35,py36,pypy3}-django20
{py27,py35,py36,pypy,pypy3}-django111
flake8,isort,check-manifest

[testenv]
Expand All @@ -14,15 +14,13 @@ deps =
basepython =
py36: python3.6
py35: python3.5
py34: python3.4
py27: python2.7
pypy: pypy
pypy3: pypy3

[travis]
python =
2.7: py27
3.4: py34
3.5: py35
3.6: py36

Expand Down

0 comments on commit 7615b99

Please sign in to comment.