Skip to content

Commit

Permalink
Fix parsing error on python_requires >=3.0.* by simplifying to >=3 redux
Browse files Browse the repository at this point in the history
  • Loading branch information
YSaxon committed Jul 20, 2023
1 parent d5cdc50 commit d3e02a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Expand Up @@ -319,7 +319,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 d3e02a7

Please sign in to comment.