Skip to content

Commit

Permalink
Add support for Python 3.6, drop support for Python 3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Sep 7, 2017
1 parent 5934c7d commit feaea9e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls zope.testrunner
Expand Down
8 changes: 5 additions & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
CHANGES
=======

3.4.1 (unreleased)
------------------
3.5 (unreleased)
----------------

- Add support for Python 3.6.

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


3.4.0 (2016-11-15)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def alltests():

setup(
name='z3c.form',
version='3.4.1.dev0',
version='3.5.dev0',
author="Stephan Richter, Roger Ineichen and the Zope Community",
author_email="zope-dev@zope.org",
description="An advanced form and widget framework for Zope 3",
Expand All @@ -85,9 +85,9 @@ def alltests():
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
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,py33,py34,py35,coverage
py27,py34,py35,py36,coverage

[testenv]
commands =
Expand Down

0 comments on commit feaea9e

Please sign in to comment.