Skip to content

Recent installation issue #239

@menoliu

Description

@menoliu

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={

Metadata

Metadata

Assignees

Labels

URGENTMaximum prioritybugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions