Commit 4aaf4b62 authored by Jim Fulton's avatar Jim Fulton

4.3 and require ZODB 4 (not 5)

parent 934650ec
Changelog Changelog
========= =========
4.2.2 (unreleased) 4.3.0 (2016-08-02)
------------------ ------------------
- Refuse to work with ZODB 5.
Some recent cleanups in the ZODB commit protocol are incompatible with ZEO 4.
- Fix ZEO cache tracing on Python 3. - Fix ZEO cache tracing on Python 3.
4.2.1 (2016-06-30) 4.2.1 (2016-06-30)
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
version = '4.2.1' version = '4.3.0'
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os
...@@ -119,7 +119,7 @@ setup(name="ZEO", ...@@ -119,7 +119,7 @@ setup(name="ZEO",
tests_require = tests_require, tests_require = tests_require,
extras_require = dict(test=tests_require), extras_require = dict(test=tests_require),
install_requires = [ install_requires = [
'ZODB >= 4.2.0b1', 'ZODB >= 4.2.0b1, <4.999',
'six', 'six',
'transaction', 'transaction',
'persistent >= 4.1.0', 'persistent >= 4.1.0',
......
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