Skip to content

Commit

Permalink
Drop Python 3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Mar 6, 2020
1 parent 1cc26fd commit 800fb5f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 0 additions & 2 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
- 3.7
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
CHANGES
=========

1.1.1 (unreleased)
1.2.0 (unreleased)
==================

- Add support for Python 3.7 and 3.8

- Drop Python 3.4 support.


1.1.0 (2017-09-30)
==================
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()

version = '1.1.1.dev0'
version = '1.2.0.dev0'

BROWSER_REQUIRES = [
'zope.browser',
Expand Down Expand Up @@ -84,7 +84,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
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,py37,py38,pypy,pypy3,coverage,minimal
py27,py35,py36,py37,py38,pypy,pypy3,coverage,minimal

[testenv]
commands =
Expand Down

0 comments on commit 800fb5f

Please sign in to comment.