Commit 56319ef6 authored by Tres Seaver's avatar Tres Seaver

Note dependency on released ZODB >= 4.0.0b1.

parent 763fd763
...@@ -4,6 +4,8 @@ CHANGES ...@@ -4,6 +4,8 @@ CHANGES
Unreleased Unreleased
---------- ----------
- Depend on ZODB >= 4.0.0b1
- Added support for Python 3.2 / 3.3. - Added support for Python 3.2 / 3.3.
4.0.0a1 (2012-11-19) 4.0.0a1 (2012-11-19)
......
[buildout] [buildout]
develop = . develop = .
../ZODB
#find-links =
# ${buildout:directory}/ZODB-4.0.0dev.tar.gz
parts = parts =
test test
scripts scripts
......
...@@ -94,7 +94,7 @@ setup(name="ZEO", ...@@ -94,7 +94,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', 'ZODB >= 4.0.0b1',
'six', 'six',
'transaction', 'transaction',
'persistent', 'persistent',
......
[tox] [tox]
envlist = envlist =
py26,py27,py33 py26,py27,py32,py33
[testenv] [testenv]
commands = commands =
python setup.py test -q python setup.py test -q
deps = deps =
git+https://github.com/zopefoundation/ZODB.git@py3#egg=ZODB ZODB >= 4.0.0b1
random2 random2
ZConfig ZConfig
manuel manuel
......
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