Skip to content

Commit

Permalink
Support Python 3.6 instead of 3.3 (#3)
Browse files Browse the repository at this point in the history
* Add support for Python 3.6.
* Drop support for Python 3.3.
  • Loading branch information
cclauss authored and Michael Howitz committed Feb 27, 2017
1 parent d7b07c5 commit 3ec70cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -2,9 +2,9 @@ language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
install:
- python bootstrap.py
- bin/buildout
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -8,7 +8,7 @@ Changelog

- Drop support for Python 2.6.

- Add support for Python 3.3, 3.4, and 3.5.
- Add support for Python 3.4, 3.5, and 3.6.

- Move dependency from ``ZODB3`` -> [``zdaemon``, ``ZODB``, ``ZEO``].
Even though this package doesn't actually import anything from the last
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -35,9 +35,9 @@
"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",
],
packages=find_packages('src'),
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,py35,coverage
py27,py34,py35,py36,coverage

[testenv]
deps =
Expand Down

0 comments on commit 3ec70cc

Please sign in to comment.