Skip to content

Commit

Permalink
Merge pull request #26 from hartwork/drop-python-3-4
Browse files Browse the repository at this point in the history
Drop support for Python 3.4 (and fix Travis CI)
  • Loading branch information
ssbarnea authored Apr 15, 2020
2 parents bd32246 + 621ce3b commit 702fc77
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 10 deletions.
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ jobs:
script: python -m tox
python: "2.7"
env: TOXENV=py27
- stage: test
script: python -m tox
python: "3.4"
env: TOXENV=py34
after_success:
- bash <(curl -s https://codecov.io/bash) -e TOX_ENV
- stage: test
script: python -m tox
python: "3.5"
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ $(PYENV_HOME)/bin/activate: requirements*.txt

prepare: venv
pyenv install -s 2.7.13
pyenv install -s 3.4.5
pyenv install -s 3.5.2
pyenv install -s 3.6.0
pyenv local 2.7.13 3.4.5 3.5.2 3.6.0
pyenv local 2.7.13 3.5.2 3.6.0
@echo "INFO: === Prearing to run for package:$(PACKAGE_NAME) platform:$(PLATFORM) py:$(PYTHON_VERSION) dir:$(DIR) ==="

testspace:
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ pytest-cov
pytest>=2.9.1
tox-pyenv
tox>=2.3.1
twine
wheel>=0.24.0
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ classifier =
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Software Development :: Libraries :: Python Modules
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.3.1
envlist = lint,py27,py37,py36,py35,py34
envlist = lint,py27,py37,py36,py35
skip_missing_interpreters = true
tox_pyenv_fallback=True
ignore_errors=False
Expand Down

0 comments on commit 702fc77

Please sign in to comment.