Skip to content

Commit

Permalink
Fix parsing error on python_requires >=3.0.* by simplifying to >=3
Browse files Browse the repository at this point in the history
Signed-off-by: Yaakov Saxon <ysaxon@gmail.com>
  • Loading branch information
YSaxon committed Apr 17, 2023
1 parent 05f6872 commit 41ebc90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Expand Up @@ -314,7 +314,7 @@
# package_dir={'':'src'},


python_requires = '>=3.0.*, <4',
python_requires = '>=3, <4',
install_requires = [], # Optional
# https://packaging.python.org/discussions/install-requires-vs-requirements/

Expand Down

0 comments on commit 41ebc90

Please sign in to comment.