Skip to content

Commit

Permalink
setup.py: requires_python format changed
Browse files Browse the repository at this point in the history
Response from PyPI:
'>=3.7.*' is an invalid value for Requires-Python. Error: Invalid specifier in requirement. See https://packaging.python.org/specifications/core-metadata for more information.
  • Loading branch information
bryzgaloff committed May 11, 2023
1 parent 21b504e commit 368f69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
url=about.__url__,
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
python_requires=">=3.7.*",
python_requires=">=3.7",
install_requires=install_requires,
extras_require={
'pandas': ['apache-airflow[pandas]>=2.0.0,<2.7.0'],
Expand Down

0 comments on commit 368f69a

Please sign in to comment.