File tree Expand file tree Collapse file tree 5 files changed +22
-13
lines changed Expand file tree Collapse file tree 5 files changed +22
-13
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ htmlcov/
3737.tox /
3838.coverage
3939.cache
40+ .noseids
4041nosetests.xml
4142coverage.xml
4243
Original file line number Diff line number Diff line change 11from __future__ import with_statement
22from alembic import context
3- from sqlalchemy import engine_from_config , pool
43from logging .config import fileConfig
4+ from sqlalchemy import engine_from_config , pool
5+ from os .path import dirname , abspath
6+
7+ import sys
8+
9+ from pgcontents .schema import metadata
510
611# this is the Alembic Config object, which provides
712# access to the values within the .ini file in use.
1520# for 'autogenerate' support
1621# from myapp import mymodel
1722# target_metadata = mymodel.Base.metadata
18- from os .path import dirname , abspath
19- import sys
2023sys .path .append (dirname (dirname (dirname (abspath (__file__ )))))
21- from pgcontents . schema import metadata
24+
2225target_metadata = metadata
2326
2427# other values from the config, defined by the needs of env.py,
Original file line number Diff line number Diff line change @@ -2,20 +2,20 @@ Jinja2==2.7.3
22Mako == 1.0.0
33MarkupSafe == 0.23
44Pygments == 2.0.1
5- SQLAlchemy == 0.9.8
6- alembic == 0.7.1
5+ SQLAlchemy == 1.0.5
6+ alembic == 0.7.6
77argparse == 1.2.1
88backports.ssl-match-hostname == 3.4.0.2
99certifi == 14.05.14
1010fancycompleter == 0.4
11- -e [email protected] :quantopian/ ipython.git@8fd1a6f42bd2785c902ab0411b50afa4051699b1#egg=ipython-master 11+ ipython == 3.2.0
1212jsonschema == 2.4.0
1313mistune == 0.5.0
14- psycopg2 == 2.5.4
14+ psycopg2 == 2.6.1
1515pyrepl == 0.8.4
1616pyzmq == 14.4.1
1717tornado == 4.0.2
1818wmctrl == 0.1
19- requests == 2.5 .0
20- six == 1.8 .0
19+ requests == 2.7 .0
20+ six == 1.9 .0
2121click == 3.3
Original file line number Diff line number Diff line change 11# Test reqs.
22nose==1.3.4
3- python-dateutil
4- nose-ignore-docstring
3+ python-dateutil==2.4.2
4+ nose-ignore-docstring==0.2
5+ pyflakes==0.9.2
6+ pep8==1.6.2
7+ mccabe==0.3.1
58flake8==2.2.5
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ def main():
2020 reqs_file = join (dirname (__file__ ), 'requirements.txt' )
2121 with open (reqs_file ) as f :
2222 requirements = [
23- req for req in f .readlines () if not req .strip ().startswith ('-e' )
23+ req .replace ('==' , '>=' )
24+ for req in f .readlines ()
25+ if not req .strip ().startswith ('-e' )
2426 ]
2527
2628 setup (
You can’t perform that action at this time.
0 commit comments