Skip to content

Commit

Permalink
Support Python 3.4 and 3.5 while dropping Python 2.6 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Aug 1, 2016
1 parent 06b84a2 commit 41fa2bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
@@ -1,8 +1,9 @@
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
install:
- pip install .
script:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.txt
Expand Up @@ -5,7 +5,9 @@ Changes
1.0.0a2 (unreleased)
====================

- Nothing changed yet.
- Claim support for Python 3.4 and 3.5.

- Drop support for Python 2.6.


1.0.0a1 (2013-02-23)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -62,10 +62,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
py27,py33,py34,py35

[testenv]
commands =
Expand Down

0 comments on commit 41fa2bd

Please sign in to comment.