From 89cc69f77284faeaca4f855c2c5826d5253782a1 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Wed, 3 Mar 2021 20:49:30 +1100 Subject: [PATCH] Pin wtforms due to removal of ext module. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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',