Skip to content

Commit

Permalink
Drop Python 3.4
Browse files Browse the repository at this point in the history
Also fix 'tox -p auto' not to coverage report too early
  • Loading branch information
mgedmin committed Apr 7, 2020
1 parent a9833ba commit b09c2cc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
@@ -1,14 +1,12 @@
language: python
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- pypy2.7-6.0
- pypy3.5-6.0
- pypy
- pypy3
install:
- pip install -U pip setuptools
- pip install -U zope.testrunner coverage coveralls
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -6,6 +6,8 @@ CHANGES

- Fix test suite incompatibility with zope.interface >= 5.0.

- Drop support for Python 3.4.


1.4 (2020-02-23)
================
Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -30,7 +30,6 @@ def read(*rnames):
'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',
'Programming Language :: Python :: 3.7',
Expand Down
13 changes: 11 additions & 2 deletions tox.ini
@@ -1,14 +1,14 @@
[tox]
envlist =
py27,
py34,
py35,
py36,
py37,
py38,
pypy,
pypy3,
coverage-report
# try to keep this in sync with [tox:coverage-reports] 'depends =' please

[testenv]
usedevelop = true
Expand All @@ -22,7 +22,7 @@ deps =
coverage

[testenv:coverage-report]
basepython = python3.6
basepython = python3
deps = coverage
setenv =
COVERAGE_FILE=.coverage
Expand All @@ -32,3 +32,12 @@ commands =
coverage combine
coverage html --ignore-errors
coverage report --ignore-errors --fail-under=93
parallel_show_output = true
depends =
py27,
py35,
py36,
py37,
py38,
pypy,
pypy3,

0 comments on commit b09c2cc

Please sign in to comment.