-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Labels
Description
When trying to install with python setup.py develop or while running tox -e build we have this issue:
error in idpconfgen setup command: 'python_requires' must be a string containing valid version specifiers; Invalid specifier: '>=3.8.*'
Has been solved by fixing a line in the setup.py file:
@@ -83,7 +83,7 @@ setup(
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
],
- python_requires='>=3.8.*,<4',
+ python_requires='>=3.8,<4',
install_requires=[
],
extras_require={