Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop support Python3.4 #16

Merged
merged 9 commits into from
Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
language: python
matrix:
include:
# Drop Support py26
# - python: 2.6
# env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
# Drop Support py32
# - python: 3.4
# env: TOXENV=py32
# tox drop support py33
# - python: 3.3
# env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
Expand All @@ -22,7 +11,7 @@ matrix:
env: TOXENV=py37
dist: xenial
sudo: true
- python: pypy
- python: pypy3.5
env: TOXENV=pypy
- python: 3.7
env: TOXENV=flake8
Expand All @@ -37,7 +26,6 @@ before_install:
install:
- pip install tox
- if test "$TOXENV" = py37 ; then pip install coveralls ; fi
# - if test "$TOXENV" = py32 ; then pip install --upgrade "virtualenv<14.0.0" "setuptools<30.0.0"; fi
- python setup.py dataset
script:
- tox
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
[tox]
envlist=py27,py34,py35,py36,py37,pypy,flake8,mypy,autopep8
envlist=py27,py35,py36,py37,pypy,flake8,mypy,autopep8

[testenv]
commands=
python setup.py test

[testenv:py27]
deps =
pytest<5.0.0
commands = python setup.py test

[testenv:flake8]
deps = flake8
commands=
Expand Down