Commit bc429149 authored by Tres Seaver's avatar Tres Seaver

Add support for Python 3.4.

parent f4b3b80c
...@@ -5,6 +5,7 @@ python: ...@@ -5,6 +5,7 @@ python:
- 2.7 - 2.7
- 3.2 - 3.2
- 3.3 - 3.3
- 3.4
install: install:
- travis_retry pip install BTrees ZConfig manuel persistent six transaction zc.lockfile zdaemon zope.interface zope.testing zope.testrunner - travis_retry pip install BTrees ZConfig manuel persistent six transaction zc.lockfile zdaemon zope.interface zope.testing zope.testrunner
- travis_retry pip install -e . - travis_retry pip install -e .
......
...@@ -2,9 +2,11 @@ ...@@ -2,9 +2,11 @@
Change History Change History
================ ================
4.0.1 (unreleased) 4.1.0 (unreleased)
================== ==================
- Add support for Python 3.4.
- Fix POSKeyError during transaction.commit when after savepoint.rollback. - Fix POSKeyError during transaction.commit when after savepoint.rollback.
see https://github.com/zopefoundation/ZODB/issues/16 see https://github.com/zopefoundation/ZODB/issues/16
......
...@@ -20,7 +20,7 @@ to application logic. ZODB includes features such as a plugable storage ...@@ -20,7 +20,7 @@ to application logic. ZODB includes features such as a plugable storage
interface, rich transaction support, and undo. interface, rich transaction support, and undo.
""" """
VERSION = "4.0.1dev" VERSION = "4.1.0dev"
import os import os
import sys import sys
...@@ -52,6 +52,7 @@ Programming Language :: Python :: 2.7 ...@@ -52,6 +52,7 @@ Programming Language :: Python :: 2.7
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.2 Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: CPython
Topic :: Database Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules Topic :: Software Development :: Libraries :: Python Modules
......
[tox] [tox]
envlist = py26,py27,py32,py33,simple envlist = py26,py27,py32,py33,py34,simple
[testenv] [testenv]
commands = commands =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment