Skip to content

Commit

Permalink
Avoid installing Flask>=3
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Oct 16, 2023
1 parent 6ad77b7 commit b467d44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

install_requires = [
"APScheduler>=2.1.2,<3.10.0",
"Flask>=1.1.1",
"Flask>=1.1.1,<3.0.0",
"SQLAlchemy>=1.3.15,<1.4.0",
"requests>=2.23.0",
"future",
Expand All @@ -30,9 +30,9 @@
if sys.version_info[1] <= 6:
install_requires.append("flask-login==0.5.0")
else:
install_requires.append("flask-login==0.6.0")
install_requires.append("flask-login==0.6.2")

install_requires.append("Werkzeug>=1.0.0")
install_requires.append("Werkzeug>=1.0.0,<3.0.0")

setup(
name="ckanserviceprovider",
Expand Down

0 comments on commit b467d44

Please sign in to comment.