Add tox support.
This commit is contained in:
parent
d7a135f77f
commit
79bfeced64
4 changed files with 36 additions and 5 deletions
15
setup.py
15
setup.py
|
@ -61,12 +61,21 @@ requires = [
|
|||
#
|
||||
# package # low high
|
||||
|
||||
# For now, let's restrict FormEncode to 1.2 since the 1.3 release
|
||||
# introduces some deprecation warnings. Once we're running 1.2 everywhere
|
||||
# in production, we can start looking at adding 1.3 support.
|
||||
# TODO: Remove this restriction.
|
||||
'FormEncode<=1.2.99', # 1.2.4 1.2.6
|
||||
|
||||
# Pyramid 1.3 introduced 'pcreate' command (and friends) to replace
|
||||
# deprecated 'paster create' (and friends).
|
||||
'pyramid>=1.3a1', # 1.3b2
|
||||
# deprecated 'paster create' (and friends). Also for now, let's restrict
|
||||
# Pyramid to 1.4 since the 1.5 release introduces some
|
||||
# backwards-incompatible changes. Once we're running 1.4 everywhere in
|
||||
# production, we can start looking at adding 1.5 support.
|
||||
# TODO: Remove the latter restriction.
|
||||
'pyramid>=1.3a1,<=1.4.99', # 1.3b2 1.4.5
|
||||
|
||||
'FormAlchemy', # 1.4.2
|
||||
'FormEncode', # 1.2.4
|
||||
'Mako', # 0.6.2
|
||||
'pyramid_beaker>=0.6', # 0.6.1
|
||||
'pyramid_debugtoolbar', # 1.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue