forked from pool/python-ZEO
- Update to 6.0.0
* Drop support for Python 2.7, 3.5, 3.6.
* Add support for Python 3.12.
* Switch to using async/await directly instead of @coroutine/yield.
* Drop experimental support for credentials object: the corresponding
ClientStorage.__init__ parameter credentials is retained but ignored.
From now on ZEO supports authentication only via SSL certificates.
* Ensure test compatibility with both ZODB<6 and ZODB>=6 by looking for
ZODB inherited tests with prefixes check (used by ZODB<6) and test
(used by ZODB>=6)
- Drop merged patches:
* python-ZEO-no-mock.patch
* python-ZEO-no-six.patch
- Add patch skip-PackUndoLog.patch to skip test causing an error
* https://github.com/zopefoundation/ZEO/issues/240
OBS-URL: https://build.opensuse.org/request/show/1160079
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ZEO?expand=0&rev=30
13 lines
488 B
Diff
13 lines
488 B
Diff
Index: ZEO-6.0.0/src/ZEO/tests/testZEO.py
|
|
===================================================================
|
|
--- ZEO-6.0.0.orig/src/ZEO/tests/testZEO.py
|
|
+++ ZEO-6.0.0/src/ZEO/tests/testZEO.py
|
|
@@ -391,6 +391,7 @@ class FullGenericTests(
|
|
IterationTests.IterationTests):
|
|
"""Extend GenericTests with tests that MappingStorage can't pass."""
|
|
|
|
+ @unittest.skip
|
|
def testPackUndoLog(self):
|
|
# Prevent execution of the test inherited from ``ZODB>=6.0``.
|
|
#
|