Skip to content

Commit

Permalink
Drop support for Python 3.4.
Browse files Browse the repository at this point in the history
It is broken on TravisCI.
  • Loading branch information
Michael Howitz committed Feb 27, 2019
1 parent 93375ac commit 688518d
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ develop-eggs/
eggs/
*.egg-info/
.coverage
.coverage.*
coverage.xml
.tox
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: python
sudo: false
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
Expand All @@ -11,7 +9,6 @@ matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install six==1.10.0 # force to avoid conflict with zc.recipe.testrunner
- pip install zc.buildout
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changelog
3.0b5 (unreleased)
------------------

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


3.0b4 (2018-10-05)
Expand Down
2 changes: 0 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ environment:
matrix:
- python: 27
- python: 27-x64
- python: 34
- python: 34-x64
- python: 35
- python: 35-x64
- python: 36
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"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
10 changes: 1 addition & 9 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
envlist =
py27,
py27-pure,
py34,
py34-pure,
py35,
py35-pure,
py36,
py36-pure,
py37,
py37-pure,
py37-pure,
pypy,
pypy3,
coverage-report,
Expand All @@ -32,12 +30,6 @@ basepython =
setenv =
PURE_PYTHON = 1

[testenv:py34-pure]
basepython =
python3.4
setenv =
PURE_PYTHON = 1

[testenv:py35-pure]
basepython =
python3.5
Expand Down

0 comments on commit 688518d

Please sign in to comment.