Skip to content

Commit 0c71e6d

Browse files
committed
correct the python_requires version syntax
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>
1 parent 26d3591 commit 0c71e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,6 @@ def has_ext_modules(self):
231231
setup_requires=['setuptools>=38.6.0', 'wheel'],
232232
install_requires=['enum34;python_version<"3.4"'],
233233
ext_modules=_EXTENSIONS,
234-
python_requires='>=3.4.*',
234+
python_requires='>=3.4.0',
235235
zip_safe=False
236236
)

0 commit comments

Comments
 (0)