Skip to content

Commit

Permalink
Merge pull request #1 from felixonmars/master
Browse files Browse the repository at this point in the history
Note explicit support for Python 3.5
  • Loading branch information
mgedmin committed Nov 7, 2015
2 parents 520bb72 + 217466e commit 96cf7e7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install . --use-mirrors
- pip install .
script:
- python setup.py test -q
notifications:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changes
4.0.5 (unreleased)
##################

- TBD
- Claim support for Python 3.5.

4.0.4 (2014-03-19)
##################
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
``zope.hookable``
=================

.. image:: https://pypip.in/version/zope.hookable/badge.svg?style=flat
.. image:: https://img.shields.io/pypi/v/zope.hookable.svg
:target: https://pypi.python.org/pypi/zope.hookable/
:alt: Latest Version

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def read(*rnames):
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Zope3",
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 =
py26,py27,py32,py33,py34,pypy,coverage,docs
py26,py27,py32,py33,py34,py35,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit 96cf7e7

Please sign in to comment.