Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joshua
zodb
Commits
bc429149
Commit
bc429149
authored
Dec 26, 2014
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for Python 3.4.
parent
f4b3b80c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
.travis.yml
.travis.yml
+1
-0
CHANGES.rst
CHANGES.rst
+3
-1
setup.py
setup.py
+2
-1
tox.ini
tox.ini
+1
-1
No files found.
.travis.yml
View file @
bc429149
...
...
@@ -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 .
...
...
CHANGES.rst
View file @
bc429149
...
...
@@ -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
...
...
setup.py
View file @
bc429149
...
...
@@ -20,7 +20,7 @@ to application logic. ZODB includes features such as a plugable storage
interface, rich transaction support, and undo.
"""
VERSION
=
"4.
0.1
dev"
VERSION
=
"4.
1.0
dev"
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.ini
View file @
bc429149
[tox]
envlist
=
py26,py27,py32,py33,simple
envlist
=
py26,py27,py32,py33,
py34,
simple
[testenv]
commands
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment