Skip to content

Commit

Permalink
correct the python_requires version syntax
Browse files Browse the repository at this point in the history
Fixes errors like
'python_requires' must be a string containing valid version specifiers; Invalid specifier: '>=3.4.*'

Signed-off-by: Khem Raj <raj.khem@gmail.com>
  • Loading branch information
kraj committed Feb 14, 2023
1 parent 26d3591 commit 0c71e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,6 @@ def has_ext_modules(self):
setup_requires=['setuptools>=38.6.0', 'wheel'],
install_requires=['enum34;python_version<"3.4"'],
ext_modules=_EXTENSIONS,
python_requires='>=3.4.*',
python_requires='>=3.4.0',
zip_safe=False
)

0 comments on commit 0c71e6d

Please sign in to comment.