Commit eae3dd75 authored by Jim Fulton's avatar Jim Fulton

4.3.1 Require transaction 1 to avoid cleanups that break ZEO 4.

parent bc92bdd7
Changelog Changelog
========= =========
4.3.1 (2016-11-18)
------------------
- Require transaction 1 to avoid cleanups that break ZEO 4.
4.3.0 (2016-08-02) 4.3.0 (2016-08-02)
------------------ ------------------
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
version = '4.3.0' version = '4.3.1'
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os
...@@ -121,7 +121,7 @@ setup(name="ZEO", ...@@ -121,7 +121,7 @@ setup(name="ZEO",
install_requires = [ install_requires = [
'ZODB >= 4.2.0b1, <4.999', 'ZODB >= 4.2.0b1, <4.999',
'six', 'six',
'transaction', 'transaction < 2.0.0',
'persistent >= 4.1.0', 'persistent >= 4.1.0',
'zc.lockfile', 'zc.lockfile',
'ZConfig', 'ZConfig',
......
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