8000 Fix #397: Remove asterisk in python_requires · python-semver/python-semver@67464a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 67464a7

Browse files
committed
Fix #397: Remove asterisk in python_requires
The asterisk in "python_requires = >= 3.7.*" make the pyproject-build command fail with this exception: setuptools.extern.packaging.specifiers.InvalidSpecifier: Invalid specifier: '>=3.7.*' This fix removes the asterisk which leads to a successful build.
1 parent a2a6169 commit 67464a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ license = BSD
3939
package_dir =
4040
=src
4141
packages = find:
42-
python_requires = >=3.7.*
42+
python_requires = >=3.7
4343
include_package_data = True
4444

4545
[options.entry_points]

0 commit comments

Comments
 (0)
0