Skip to content

Commit

Permalink
Merge 2d0ae71 into 8f5ac63
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Aug 22, 2018
2 parents 8f5ac63 + 2d0ae71 commit 435031f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -125,7 +125,7 @@ def read(path):
'test': tests_require,
},
install_requires=[
'persistent >= 4.2.0',
'persistent >= 4.4.0',
'BTrees >= 4.2.0',
'ZConfig',
'transaction >= 2.0.3',
Expand Down
5 changes: 5 additions & 0 deletions src/ZODB/tests/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
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"),
Expand Down

0 comments on commit 435031f

Please sign in to comment.