mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Require SQLAlchemy < 1.0
It appears SQLAlchemy 1.0 breaks something about the way we're using bindparam in pokedex.db.multilang.
This commit is contained in:
parent
93f20a484d
commit
bdd1c930aa
1 changed files with 2 additions and 2 deletions
2
setup.py
2
setup.py
|
@ -8,7 +8,7 @@ setup(
|
||||||
'pokedex': ['data/csv/*.csv']
|
'pokedex': ['data/csv/*.csv']
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'SQLAlchemy>=0.9.7',
|
'SQLAlchemy >=0.9.7, <1.0',
|
||||||
'whoosh >=2.5, <2.7',
|
'whoosh >=2.5, <2.7',
|
||||||
'markdown',
|
'markdown',
|
||||||
'construct',
|
'construct',
|
||||||
|
|
Loading…
Reference in a new issue