diff options
author | Frederick Muriuki Muriithi | 2025-10-06 11:57:20 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-10-06 12:21:08 -0500 |
commit | 9839e5bf35bd7be158b35fa98a734f7a3473688d (patch) | |
tree | 877b3736ae8c7201ca5812a37343d9a2c8fdf73d /setup.py | |
parent | 33418d9f428c8ea5dc14f2accc15f4abbf275ab2 (diff) | |
download | gn-auth-9839e5bf35bd7be158b35fa98a734f7a3473688d.tar.gz |
The build was failing with ``` ContextualVersionConflict(flask-cors 0.0.1 ... Requirement.parse('flask-cors>=3.0.9'), {'gn-auth'}) ```
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py index 77e5eb3..59cd86f 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup(author="Frederick M. Muriithi", "pymonad", "redis>=3.5.3", "requests>=2.25.1", - "flask-cors>=3.0.9", + "flask-cors", # with the `>=3.0.9` specification, it breaks the build "gn-libs>=0.0.0" ], include_package_data=True, |