diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-08-30 14:43:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-30 14:43:25 -0700 |
| commit | 332ca33fc51fb64b8e15e1aceb28e96dee2c6fec (patch) | |
| tree | 65935ce3e3709c9d89d9ad97bd13c35dcf8166f8 /docs/quick_tour/sqla_demo/setup.py | |
| parent | a4b4cdf2968d871b0467c304cc20ff20a586adae (diff) | |
| parent | e604ce4350ccb6a70f632d5a4fdc5984a4218fd1 (diff) | |
| download | pyramid-332ca33fc51fb64b8e15e1aceb28e96dee2c6fec.tar.gz pyramid-332ca33fc51fb64b8e15e1aceb28e96dee2c6fec.tar.bz2 pyramid-332ca33fc51fb64b8e15e1aceb28e96dee2c6fec.zip | |
Merge pull request #3338 from Pylons/docs-cc-update-for-1.10
Update docs for all cookiecutters
Diffstat (limited to 'docs/quick_tour/sqla_demo/setup.py')
| -rw-r--r-- | docs/quick_tour/sqla_demo/setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/quick_tour/sqla_demo/setup.py b/docs/quick_tour/sqla_demo/setup.py index 855a15d58..76cd518ca 100644 --- a/docs/quick_tour/sqla_demo/setup.py +++ b/docs/quick_tour/sqla_demo/setup.py @@ -9,8 +9,9 @@ with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() requires = [ + 'alembic', 'plaster_pastedeploy', - 'pyramid >= 1.9a', + 'pyramid >= 1.9', 'pyramid_debugtoolbar', 'pyramid_jinja2', 'pyramid_retry', @@ -23,7 +24,7 @@ requires = [ tests_require = [ 'WebTest >= 1.3.1', # py3 compat - 'pytest', + 'pytest>=3.7.4', 'pytest-cov', ] @@ -54,7 +55,7 @@ setup( 'main = sqla_demo:main', ], 'console_scripts': [ - 'initialize_sqla_demo_db = sqla_demo.scripts.initializedb:main', + 'initialize_sqla_demo_db = sqla_demo.scripts.initialize_db:main', ], }, ) |
