Commit 196295a6 authored by Jason Madden's avatar Jason Madden

Add Python 3.7 support.

And fix all the deprecations it reports.

Fixes #214 and fixes #215 (well there's one remaining deprecation in 'manuel')

Based on #217 so that all tests pass.
parent 1c9a55d4
...@@ -15,6 +15,9 @@ matrix: ...@@ -15,6 +15,9 @@ matrix:
python: 3.5 python: 3.5
- os: linux - os: linux
python: 3.6 python: 3.6
- python: 3.7
dist: xenial
sudo: true
install: install:
- pip install -U pip - pip install -U pip
- pip install -U setuptools zc.buildout - pip install -U setuptools zc.buildout
......
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
- Bump the dependency on persistent to at least 4.4.0. - Bump the dependency on persistent to at least 4.4.0.
- Add support for Python 3.7.
5.4.0 (2018-03-26) 5.4.0 (2018-03-26)
================== ==================
......
...@@ -8,6 +8,8 @@ environment: ...@@ -8,6 +8,8 @@ environment:
- python: 35-x64 - python: 35-x64
- python: 36 - python: 36
- python: 36-x64 - python: 36-x64
- python: 37
- python: 37-x64
install: install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%" - "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
......
...@@ -25,6 +25,7 @@ Programming Language :: Python :: 3 ...@@ -25,6 +25,7 @@ Programming Language :: Python :: 3
Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy Programming Language :: Python :: Implementation :: PyPy
Topic :: Database Topic :: Database
......
...@@ -1328,7 +1328,7 @@ class TransactionMetaData(object): ...@@ -1328,7 +1328,7 @@ class TransactionMetaData(object):
@property @property
def _extension(self): def _extension(self):
warnings.warn("_extension is deprecated, use extension", warnings.warn("_extension is deprecated, use extension",
DeprecationWarning) DeprecationWarning, stacklevel=2)
return self.extension return self.extension
@_extension.setter @_extension.setter
......
...@@ -19,7 +19,7 @@ import zope.testing.renormalizing ...@@ -19,7 +19,7 @@ import zope.testing.renormalizing
checker = zope.testing.renormalizing.RENormalizing([ checker = zope.testing.renormalizing.RENormalizing([
(re.compile( (re.compile(
'[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]+'), r'[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]+'),
'2007-11-10 15:18:48.543001'), '2007-11-10 15:18:48.543001'),
(re.compile('hash=[0-9a-f]{40}'), (re.compile('hash=[0-9a-f]{40}'),
'hash=b16422d09fabdb45d4e4325e4b42d7d6f021d3c3'), 'hash=b16422d09fabdb45d4e4325e4b42d7d6f021d3c3'),
...@@ -29,11 +29,11 @@ checker = zope.testing.renormalizing.RENormalizing([ ...@@ -29,11 +29,11 @@ checker = zope.testing.renormalizing.RENormalizing([
# Python 3 produces larger pickles, even when we use zodbpickle :( # Python 3 produces larger pickles, even when we use zodbpickle :(
# this changes all the offsets and sizes in fstail.txt # this changes all the offsets and sizes in fstail.txt
(re.compile("user='' description='' " (re.compile("user='' description='' "
"length=[0-9]+ offset=[0-9]+ \(\+23\)"), r"length=[0-9]+ offset=[0-9]+ \(\+23\)"),
"user='' description='' " "user='' description='' "
"length=<LENGTH> offset=<OFFSET> (+23)"), "length=<LENGTH> offset=<OFFSET> (+23)"),
(re.compile("user='' description='initial database creation' " (re.compile("user='' description='initial database creation' "
"length=[0-9]+ offset=4 \(\+48\)"), r"length=[0-9]+ offset=4 \(\+48\)"),
"user='' description='initial database creation' " "user='' description='initial database creation' "
"length=<LENGTH> offset=4 (+48)"), "length=<LENGTH> offset=4 (+48)"),
]) ])
......
...@@ -36,7 +36,7 @@ checker = renormalizing.RENormalizing([ ...@@ -36,7 +36,7 @@ checker = renormalizing.RENormalizing([
# Python 3 bytes add a "b". # Python 3 bytes add a "b".
(re.compile("b('.*?')"), r"\1"), (re.compile("b('.*?')"), r"\1"),
# Python 3 removes empty list representation. # Python 3 removes empty list representation.
(re.compile("set\(\[\]\)"), r"set()"), (re.compile(r"set\(\[\]\)"), r"set()"),
# Python 3 adds module name to exceptions. # Python 3 adds module name to exceptions.
(re.compile("ZODB.POSException.POSKeyError"), r"POSKeyError"), (re.compile("ZODB.POSException.POSKeyError"), r"POSKeyError"),
(re.compile("ZODB.POSException.ReadConflictError"), r"ReadConflictError"), (re.compile("ZODB.POSException.ReadConflictError"), r"ReadConflictError"),
...@@ -198,7 +198,7 @@ class SetstateErrorLoggingTests(ZODB.tests.util.TestCase): ...@@ -198,7 +198,7 @@ class SetstateErrorLoggingTests(ZODB.tests.util.TestCase):
record.msg, record.msg,
"Shouldn't load state for ZODB.tests.testConnection.StubObject" "Shouldn't load state for ZODB.tests.testConnection.StubObject"
" 0x01 when the connection is closed") " 0x01 when the connection is closed")
self.assert_(record.exc_info) self.assertTrue(record.exc_info)
class UserMethodTests(unittest.TestCase): class UserMethodTests(unittest.TestCase):
......
...@@ -38,6 +38,8 @@ class TransactionMetaDataTests(unittest.TestCase): ...@@ -38,6 +38,8 @@ class TransactionMetaDataTests(unittest.TestCase):
self.assertEqual(t.user, b'user') self.assertEqual(t.user, b'user')
self.assertEqual(t.description, b'description') self.assertEqual(t.description, b'description')
self.assertEqual(t.extension, dict(foo='FOO')) self.assertEqual(t.extension, dict(foo='FOO'))
with warnings.catch_warnings():
warnings.simplefilter("ignore")
self.assertEqual(t._extension, t.extension) self.assertEqual(t._extension, t.extension)
def test_constructor_default_args(self): def test_constructor_default_args(self):
...@@ -45,6 +47,8 @@ class TransactionMetaDataTests(unittest.TestCase): ...@@ -45,6 +47,8 @@ class TransactionMetaDataTests(unittest.TestCase):
self.assertEqual(t.user, b'') self.assertEqual(t.user, b'')
self.assertEqual(t.description, b'') self.assertEqual(t.description, b'')
self.assertEqual(t.extension, {}) self.assertEqual(t.extension, {})
with warnings.catch_warnings():
warnings.simplefilter("ignore")
self.assertEqual(t._extension, t.extension) self.assertEqual(t._extension, t.extension)
def test_set_extension(self): def test_set_extension(self):
...@@ -52,6 +56,8 @@ class TransactionMetaDataTests(unittest.TestCase): ...@@ -52,6 +56,8 @@ class TransactionMetaDataTests(unittest.TestCase):
self.assertEqual(t.user, b'') self.assertEqual(t.user, b'')
self.assertEqual(t.description, b'') self.assertEqual(t.description, b'')
self.assertEqual(t.extension, {}) self.assertEqual(t.extension, {})
with warnings.catch_warnings():
warnings.simplefilter("ignore")
self.assertEqual(t._extension, t.extension) self.assertEqual(t._extension, t.extension)
for name in 'extension', '_extension': for name in 'extension', '_extension':
...@@ -109,4 +115,3 @@ def test_suite(): ...@@ -109,4 +115,3 @@ def test_suite():
if __name__ == '__main__': if __name__ == '__main__':
unittest.main(defaultTest='test_suite') unittest.main(defaultTest='test_suite')
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Jython 2.7rc2 does work, but unfortunately has an issue running # Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325) # with Tox 1.9.2 (http://bugs.jython.org/issue2325)
#envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3 #envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3
envlist = py27,py34,py35,py36,pypy,pypy3 envlist = py27,py34,py35,py36,py37,pypy,pypy3
[testenv] [testenv]
# ZODB.tests.testdocumentation needs to find # ZODB.tests.testdocumentation needs to find
...@@ -16,7 +16,7 @@ commands = ...@@ -16,7 +16,7 @@ commands =
# Run unit tests first. # Run unit tests first.
zope-testrunner -u --test-path=src [] zope-testrunner -u --test-path=src []
# Only run functional tests if unit tests pass. # Only run functional tests if unit tests pass.
zope-testrunner -f --test-path=src [] zope-testrunner -f -j5 --test-path=src []
deps = deps =
.[test] .[test]
......
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