Skip to content

Commit

Permalink
fixed werkzeug not installing with python < 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
circulon committed Sep 11, 2024
1 parent b0aa630 commit 5492f11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ python-dotenv>=0.15,<0.16
responses
slackblocks
tldextract>=2.2,<2.3
werkzeug>=3,<4
werkzeug>=2,<3; python_version < '3.8'
werkzeug>=3,<4; python_version >= '3.8'
watchdog>=2,<3
whitenoise>=5.2,<5.3
pyjwt>=2.4,<2.5
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
"dotty_dict>=1.3.0,<1.40",
"pyjwt>=2.4,<2.5",
"pytest>=7,<8",
"werkzeug>=3,<4",
"werkzeug>=2,<3; python_version < '3.8'",
"werkzeug>=3,<4; python_version >= '3.8'",
"watchdog>=2,<=4",
],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 5492f11

Please sign in to comment.