Skip to content

Commit

Permalink
Updated to pyramid 1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
madjar committed Apr 5, 2012
1 parent 430eb21 commit 234664b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion development.ini.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cache.default_term.expire = 300
cache.long_term.expire = 3600

[server:main]
use = egg:Paste#http
use = egg:waitress#main
host = 0.0.0.0
port = 6543

Expand Down
2 changes: 1 addition & 1 deletion production.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cache.default_term.expire = 300
cache.long_term.expire = 3600

[server:main]
use = egg:Paste#http
use = egg:waitress#main
host = 0.0.0.0
port = 6543

Expand Down
2 changes: 1 addition & 1 deletion rezoirclogs/tests/test_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def _make_one(self, *arg, **kw):

def _config_cache(self):
from beaker import cache
cache.cache_regions['short_term'] = {}
cache.cache_regions['short_term'] = {'key_length': 0}

def test_list_jail(self):
from os.path import abspath, join, dirname
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()

requires = ['pyramid>=1.2dev', 'pyramid_debugtoolbar', 'pyramid_jinja2',
'deform', 'pyramid_beaker', 'unittest2', 'deform_bootstrap']
requires = ['pyramid>=1.3', 'pyramid_debugtoolbar', 'pyramid_jinja2',
'deform', 'pyramid_beaker', 'unittest2', 'deform_bootstrap',
'waitress']

setup(name='rezoirclogs',
version='1.9',
Expand Down

0 comments on commit 234664b

Please sign in to comment.