Closed menoliu closed 1 year ago
When trying to install with python setup.py develop or while running tox -e build we have this issue:
python setup.py develop
tox -e build
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:
setup.py
@@ -83,7 +83,7 @@ setup( keywords=[ # eg: 'keyword1', 'keyword2', 'keyword3', ], - python_requires='>=3.8.*,<4', + python_requires='>=3.8,<4', install_requires=[ ], extras_require={
Soon the CI would need to be a litle bit updated. Thanks for spotting this. See also: https://github.com/joaomcteixeira/python-project-skeleton/pull/33 and recently closed PRs. Cheers!
When trying to install with
python setup.py develop
or while runningtox -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: