Commit bc429149 authored by Tres Seaver's avatar Tres Seaver

Add support for Python 3.4.

parent f4b3b80c
......@@ -5,6 +5,7 @@ python:
- 2.7
- 3.2
- 3.3
- 3.4
install:
- travis_retry pip install BTrees ZConfig manuel persistent six transaction zc.lockfile zdaemon zope.interface zope.testing zope.testrunner
- travis_retry pip install -e .
......
......@@ -2,9 +2,11 @@
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.
see https://github.com/zopefoundation/ZODB/issues/16
......
......@@ -20,7 +20,7 @@ to application logic. ZODB includes features such as a plugable storage
interface, rich transaction support, and undo.
"""
VERSION = "4.0.1dev"
VERSION = "4.1.0dev"
import os
import sys
......@@ -52,6 +52,7 @@ Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: Implementation :: CPython
Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules
......
[tox]
envlist = py26,py27,py32,py33,simple
envlist = py26,py27,py32,py33,py34,simple
[testenv]
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