Skip to content

Commit

Permalink
HC-450 - address issue relating to SQLAlchemy 2.0.0 update (#56)
Browse files Browse the repository at this point in the history
* updated werkzeug to 2.2.0 b/c flask 2.2.0 needs it

* updated Flask

---------

Co-authored-by: dustinlo <dustin.k.lo@jpl.nasa.gov>
  • Loading branch information
DustinKLo and dustinlo authored Jan 31, 2023
1 parent 71b28db commit 7e7b0ff
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 @@ -6,13 +6,13 @@

setup(
name='grq2',
version='2.0.19',
version='2.0.20',
long_description='GeoRegionQuery REST API using ElasticSearch backend',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask>=2.0.0',
'Flask>=2.2.0',
'flask-restx>=0.5.1',
"elasticsearch>=7.0.0,<7.14.0",
'shapely>=1.5.15',
Expand All @@ -25,6 +25,6 @@
'requests',
'pyshp',
'redis',
"werkzeug==2.1.2", # TODO: remove this pin after fix has been made https://stackoverflow.com/a/73105878
"werkzeug>=2.2.0", # TODO: remove this pin after fix has been made https://stackoverflow.com/a/73105878
]
)

0 comments on commit 7e7b0ff

Please sign in to comment.