aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorBen Sturmfels <ben@sturm.com.au>2021-03-03 20:49:30 +1100
committerBen Sturmfels <ben@sturm.com.au>2021-03-03 20:49:30 +1100
commit89cc69f77284faeaca4f855c2c5826d5253782a1 (patch)
treeefef467d353aefd67ad81058c71c6e8ea899d3c1 /setup.py
parent9308959be28da444e6875691fef14a635b79339d (diff)
downloadmediagoblin-89cc69f77284faeaca4f855c2c5826d5253782a1.tar.lz
mediagoblin-89cc69f77284faeaca4f855c2c5826d5253782a1.tar.xz
mediagoblin-89cc69f77284faeaca4f855c2c5826d5253782a1.zip
Pin wtforms due to removal of ext module.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 62365123..c48acabc 100644
--- a/setup.py
+++ b/setup.py
@@ -124,7 +124,8 @@ install_requires = [
'waitress',
'alembic>=0.7.5',
'python-dateutil',
- 'wtforms',
+ # WTForms removed the "ext" module in 3.0.
+ 'wtforms<3.0',
'py-bcrypt',
'pytest>=2.3.1',
'pytest-xdist',