From 34ea572c0b15ea466f591682754ded3fa62906d9 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 31 Jan 2018 15:09:52 -0600 Subject: [PATCH] Cap zope.sqlalchemy dependency at pre-1.0 not sure why exactly but this is necessary for now --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 84fbcf18..d720b60b 100644 --- a/setup.py +++ b/setup.py @@ -81,6 +81,9 @@ requires = [ # pyramid_retry .. but that requires pyramid 1.9 ... 'pyramid_tm<2.0', # 0.3 1.1.1 + # TODO: why do we need to cap this? breaks tailbone.db zope stuff somehow + 'zope.sqlalchemy<1.0', # 0.7 0.7.7 + 'ColanderAlchemy', # 0.3.3 'deform', # 2.0.4 'humanize', # 0.5.1 @@ -101,7 +104,6 @@ requires = [ 'WebHelpers2', # 2.0 'webhelpers2_grid', # 0.1 'WTForms', # 2.1 - 'zope.sqlalchemy', # 0.7 ]