-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setup.py still requires 'setuptools_scm<6.0.0' #144
Comments
Can you provide steps to reproduce this? I.e which Python version, which OS, etc. |
The packages from PyPi repo usually prefered to be installed via system package manager in Gentoo Linux. Therefore I installed setuptools_scm-7.0.5 from Gentoo repository and then teied to build sphinxcontrib-matlabdomain from tarball provided by PyPi project page, i.e. tried to create package of sphinxcontrib-matlabdomain (to build later Cantera library documentation that depends on sphinxcontrib-matlabdomain). Actualy I could restore old setuptools_scm localy or use it installed ia pip for this purpose. This time I edited the setup.py from sphinxcontrib-matlabdomain last version tarball to allow to be built against setuptoools_scm-7.0.5 and it was built successfully but I'm not sure that it fully compatible. Initially setup.py has restriction of setuptools_scm<6.0.0. |
Thanks for the extra information. It seems to be Python 3.6 that was the issue, in this branch I removed the Can you try to clone and install directly from the repo? |
Sorry for so long delay. I completely forgot to check changes :( P.S. |
The file
setup.py
still hassetup_requires=['setuptools_scm<6.0.0']
. That results in error on build from source.Could it be safely updated to actual 7.0.5 version, i.e restricted with
'setuptools_scm<7.1.0'
or smth. else?The text was updated successfully, but these errors were encountered: