Skip to content

Commit

Permalink
Enforce compatible Werkzeug (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aggrathon authored Oct 12, 2023
1 parent 19679b2 commit df964e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion patches/bundle-dash-app.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,13 @@ def server_error(err):
# Packages that require a specific version, either due to bundled javascript
# files (dash, dash_*) or micropip:s rudimentary dependency resolving (flask)
required_packages = ""
for package in ["flask", "dash", "dash_extensions", "dash_mantine_components"]:
for package in [
"flask",
"dash",
"dash_extensions",
"dash_mantine_components",
"Werkzeug",
]:
try:
required_packages += f'"{package}=={version(package)}",'
except:
Expand Down
2 changes: 1 addition & 1 deletion xiplot
Submodule xiplot updated 4 files
+17 −1 CITATIONS.bib
+17 −10 README.md
+2 −1 pyproject.toml
+1 −0 requirements.txt

0 comments on commit df964e7

Please sign in to comment.