Skip to content

Commit

Permalink
Unpin all and bump to py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Henddher Pedroza committed Feb 2, 2024
1 parent a2cbc5e commit ba01039
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
],
python_requires=">=3.7",
python_requires=">=3.8",
packages=find_packages(),
package_data={
"index": [
Expand All @@ -40,15 +40,15 @@
],
},
install_requires=[
"flask>=1.1",
"jsonschema>3",
"flask",
"jsonschema",
"sqlalchemy<1.4",
"sqlalchemy-utils>=0.32",
"psycopg2>=2.7",
"cdislogging>=1.0",
"psycopg2",
"cdislogging",
"requests",
"ddtrace",
"importlib-metadata; python_version < '3.8'",
"typing-extensions<=4.6.0; python_version < '3.8'", # solve deps problem for python 3.7
# "ddtrace",
# "importlib-metadata; python_version < '3.8'",
# "typing-extensions<=4.6.0; python_version < '3.8'", # solve deps problem for python 3.7
],
)

0 comments on commit ba01039

Please sign in to comment.