Skip to content

Commit

Permalink
Drop support for Python 2.6 and add support for Python 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Nov 12, 2016
1 parent f2d601f commit 7406029
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -4,10 +4,10 @@ cache:
- .tox
language: python
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
install:
- travis_retry pip install tox
script:
Expand Down
6 changes: 5 additions & 1 deletion CHANGES.txt
Expand Up @@ -2,9 +2,13 @@
CHANGES
=======

3.3.1 (unreleased)
3.4.0 (unreleased)
------------------

- Drop support for Python 2.6.

- Support Python 3.5 officially.

- Fix TypeError: object of type 'generator' has no ``len()``.
Happens with z3c.formwidget.query. [maurits]

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -64,7 +64,7 @@ def alltests():

setup(
name='z3c.form',
version='3.3.1.dev0',
version='3.4.0.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 @@ -83,11 +83,11 @@ def alltests():
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'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 :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py33,py34
py27,py33,py34,py35

[testenv]
commands =
Expand Down

0 comments on commit 7406029

Please sign in to comment.