Skip to content

Commit

Permalink
Merge pull request #12 from zopefoundation/drop-py34
Browse files Browse the repository at this point in the history
Drop support for Python 3.4
  • Loading branch information
mgedmin committed Jun 19, 2019
2 parents fbc4cc1 + cf8d718 commit b7892df
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
9 changes: 2 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
language: python
sudo: false
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Changes
=========

4.3.2 (unreleased)
4.4.0 (unreleased)
==================

- Nothing changed yet.
- Drop support for Python 3.4.


4.3.1 (2018-10-16)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def read(filename):
'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
8 changes: 7 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[tox]
envlist =
py27,py34,py35,py36,py37,pypy,pypy3,coverage,docs
py27,py35,py36,py37,pypy,pypy3,coverage,docs
# Note: if you add new Python versions, please add them to
# [testenv:coverage] depends as well!

[testenv]
usedevelop = true
Expand All @@ -22,6 +24,10 @@ commands =
coverage html
coverage xml
coverage report --fail-under=100 --show-missing
# parallel mode: make sure all builds complete before we run this one
depends =
py27,py35,py36,py37,pypy,pypy3
parallel_show_output = true

[testenv:docs]
basepython =
Expand Down

0 comments on commit b7892df

Please sign in to comment.