Skip to content

Commit d5f000d

Browse files
author
Keeran Rothenfußer
committed
Use a valid python version specifier in setup.py
The glob is apparently not a valid version specifier, according to https://peps.python.org/pep-0345/#version-specifiers We simply remove the .*, as I think the greater than or equal has the effect that the glob is trying to achieve. Change-Id: I4519b2e959b0af51faf4081a279142b980075b1b
1 parent 6ca9e12 commit d5f000d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,5 @@
138138

139139
ext_modules=[cPerf],
140140

141-
python_requires='>=3.6.*',
141+
python_requires='>=3.6',
142142
)

0 commit comments

Comments
 (0)