aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorCharlotte Koch <dressupgeekout@gmail.com>2021-03-06 22:45:10 +1100
committerBen Sturmfels <ben@sturm.com.au>2021-03-06 22:45:10 +1100
commit9fe970147cff840e55f7c726ac0a52db8620125e (patch)
tree652af62eee47d9e4c1021094a6870cd3ff2255e9 /setup.py
parent0c98ad25a5e7c4ab4a8bb7e1bcfa39c3521ede92 (diff)
downloadmediagoblin-9fe970147cff840e55f7c726ac0a52db8620125e.tar.lz
mediagoblin-9fe970147cff840e55f7c726ac0a52db8620125e.tar.xz
mediagoblin-9fe970147cff840e55f7c726ac0a52db8620125e.zip
Pin sqlalchemy to a known good version.
The latest version is 1.4.0b1 which changes some internals a bit... internals which unforuntately mediagoblin's DatabaseManager screw around with (namely, _decl_class_registry) Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a7c9f2aa..897d1d2a 100644
--- a/setup.py
+++ b/setup.py
@@ -55,7 +55,7 @@ install_requires = [
'WebTest>=2.0.18',
'ConfigObj',
'Markdown',
- 'sqlalchemy',
+ 'sqlalchemy<1.4.0',
'itsdangerous',
'pytz',
'sphinx',