Freeze FormAlchemy version below 1.5.
This commit is contained in:
parent
79bfeced64
commit
8f1e34c73c
10
setup.py
10
setup.py
|
@ -1,9 +1,8 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
# -*- coding: utf-8 -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2012 Lance Edgar
|
||||
# Copyright © 2010-2014 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -67,6 +66,10 @@ requires = [
|
|||
# TODO: Remove this restriction.
|
||||
'FormEncode<=1.2.99', # 1.2.4 1.2.6
|
||||
|
||||
# FormAlchemy 1.5 supports Python 3 but is being a little aggressive about
|
||||
# it, for our needs...We'll have to stick with 1.4 for now.
|
||||
u'FormAlchemy<=1.4.99', # 1.4.3
|
||||
|
||||
# Pyramid 1.3 introduced 'pcreate' command (and friends) to replace
|
||||
# deprecated 'paster create' (and friends). Also for now, let's restrict
|
||||
# Pyramid to 1.4 since the 1.5 release introduces some
|
||||
|
@ -75,7 +78,6 @@ requires = [
|
|||
# TODO: Remove the latter restriction.
|
||||
'pyramid>=1.3a1,<=1.4.99', # 1.3b2 1.4.5
|
||||
|
||||
'FormAlchemy', # 1.4.2
|
||||
'Mako', # 0.6.2
|
||||
'pyramid_beaker>=0.6', # 0.6.1
|
||||
'pyramid_debugtoolbar', # 1.0
|
||||
|
|
Loading…
Reference in a new issue