Skip to content

Commit

Permalink
Add support for Python 3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 27, 2014
1 parent bedb9a0 commit 66cd5b3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install . --use-mirrors
script:
Expand Down
22 changes: 12 additions & 10 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
Changes
=======

4.0.2 (unreleased)
4.1.0 (unreleased)
------------------

- Nothing changed yet.
- Add support for Python 3.4.

- Add support for testing on Travis.


4.0.1 (2013-02-28)
------------------

- Added the forgotten dependency on ``six``.
- Add the forgotten dependency on ``six``.
Fixes https://github.com/zopefoundation/zope.index/issues/1.


4.0.0 (2013-02-25)
------------------

- Added support for Python 3.3.
- Add support for Python 3.3.

- Replaced deprecated ``zope.interface.implements`` usage with equivalent
- Replace deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator.

- Dropped support for Python 2.4 and 2.5.
- Drop support for Python 2.4 and 2.5.

3.6.4 (2012-03-12)
------------------
Expand Down Expand Up @@ -57,14 +59,14 @@ Changes
3.6.0 (2009-08-03)
------------------

- Improved test readability and reached 100% test coverage.
- Improve test readability and reached 100% test coverage.

- Fixed a broken optimization in okascore.c: it was passing a Python
- Fix a broken optimization in okascore.c: it was passing a Python
float to the PyInt_AS_LONG() macro. This resulted in wrong scores,
especially on 64 bit platforms, where all scores typically ended up
being zero.

- Changed okascore.c to produce the same results as its Python
- Change okascore.c to produce the same results as its Python
equivalent, reducing the brittleness of the text index tests.

3.5.2 (2009-06-09)
Expand Down Expand Up @@ -150,7 +152,7 @@ Thanks Chris McDonough of repoze for supporting and useful code.
3.4.1 (2007-09-28)
------------------

- Fixed bug in package metadata (wrong homepage URL).
- Fix bug in package metadata (wrong homepage URL).

3.4.0 (2007-09-28)
------------------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def alltests():
return unittest.TestSuite(suites)

setup(name='zope.index',
version='4.0.2.dev0',
version='4.1.0.dev0',
url='http://pypi.python.org/pypi/zope.index',
license='ZPL 2.1',
author='Zope Foundation and Contributors',
Expand All @@ -99,6 +99,7 @@ def alltests():
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'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 =
py26,py27,py33
py26,py27,py33,py34

[testenv]
commands =
Expand Down

0 comments on commit 66cd5b3

Please sign in to comment.