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
Kirill Smelkov
ZODB
Commits
3019c476
Commit
3019c476
authored
Aug 22, 2018
by
Jason Madden
Committed by
GitHub
Aug 22, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #217 from zopefoundation/issue213
Fix tests with, and depend on, persistent 4.4.
parents
8f5ac63a
2d0ae719
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
CHANGES.rst
CHANGES.rst
+2
-1
setup.py
setup.py
+2
-2
src/ZODB/tests/util.py
src/ZODB/tests/util.py
+5
-0
No files found.
CHANGES.rst
View file @
3019c476
...
...
@@ -2,13 +2,14 @@
Change History
================
5.
4.1
(unreleased)
5.
5.0
(unreleased)
==================
- Bump the dependency on zodbpickle to at least 1.0.1. This is
required to avoid a memory leak on Python 2.7. See `issue 203
<https://github.com/zopefoundation/ZODB/issues/203>`_.
- Bump the dependency on persistent to at least 4.4.0.
5.4.0 (2018-03-26)
==================
...
...
setup.py
View file @
3019c476
...
...
@@ -14,7 +14,7 @@
import
os
from
setuptools
import
setup
,
find_packages
version
=
'5.
4.1
.dev0'
version
=
'5.
5.0
.dev0'
classifiers
=
"""
\
Intended Audience :: Developers
...
...
@@ -125,7 +125,7 @@ setup(
'test'
:
tests_require
,
},
install_requires
=
[
'persistent >= 4.
2
.0'
,
'persistent >= 4.
4
.0'
,
'BTrees >= 4.2.0'
,
'ZConfig'
,
'transaction >= 2.0.3'
,
...
...
src/ZODB/tests/util.py
View file @
3019c476
...
...
@@ -37,6 +37,11 @@ checker = renormalizing.RENormalizing([
r"\1"
),
(
re
.
compile
(
'b(".*?")'
),
r"\1"
),
# Persistent 4.4 changes the repr of persistent subclasses,
# and it is slightly different with the C extension and
# pure-Python module
(
re
.
compile
(
'ZODB.tests.testcrossdatabasereferences.'
),
''
),
# Python 3 adds module name to exceptions.
(
re
.
compile
(
"ZODB.interfaces.BlobError"
),
r"BlobError"
),
...
...
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