about summary refs log tree commit diff
path: root/setup.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-10-06 12:21:49 -0500
committerFrederick Muriuki Muriithi2025-10-06 12:22:24 -0500
commitd24ffc9afa92c7d938813ee6745f8d43ac88a0a8 (patch)
treeda1c89ec056b466ca7295a6539ca2fc77c196353 /setup.py
parent082d585fcb7e1f488831faf71785480d20173c5e (diff)
downloadgenenetwork3-d24ffc9afa92c7d938813ee6745f8d43ac88a0a8.tar.gz
flask-cors: Remove minimum version pinning.
The build was failing with

```
ContextualVersionConflict(flask-cors 0.0.1
... Requirement.parse('flask-cors>=3.0.9'), {'gn3'})
```
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 5689c1a..52662a4 100755
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ setup(author='Bonface M. K.',
           "scipy>=1.6.0",
           "plotly>=4.14.3",
           "pyld",
-          "flask-cors>=3.0.9",
+          "flask-cors", # with the `>=3.0.9` specification, it breaks the build
           # "xapian-bindings" # this line breaks `guix shell …` for some reason
       ],
       include_package_data=True,