Skip to content

Commit 7587dc9

Browse files
committed
fix: Add pytz dependency for Flask-BabelEx
Flask-BabelEx requires pytz, but Babel 2.14+ no longer includes it as a transitive dependency. Add pytz explicitly. Fixes: ModuleNotFoundError: No module named 'pytz'
1 parent f8a0510 commit 7587dc9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

requirements-webapp.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Babel==2.14.0 # 2.14.0+ required for Python 3.13 (removed cgi module dependency)
22
Flask-BabelEx==0.9.4
3+
pytz # Required by Flask-BabelEx (no longer a transitive dep of Babel 2.14+)
34
Flask-Caching==2.0.1
45
Flask-Cors==3.0.10
56
Flask-Migrate==3.1.0

0 commit comments

Comments
 (0)