You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In pyproject.toml the requirement for setuptools_scm is defined as "setuptools_scm >= 2.0.0, <3". This breaks the build to fail with setuptools-scm > 3.
I tested
python -m build --wheel --no-isolation
with
setuptools 69.0.3
setuptools-scm 8.1.0
Removing , <3 from the requirements builds the .whl file flawlessly.
The text was updated successfully, but these errors were encountered:
The upper limit was meant not to use untested new major versions of setuptools_scm that might include breaking changes. However, it hadn't been updated in a long time.
In any case, setuptools_scm has been removed in e7816a2.
In
pyproject.toml
the requirement forsetuptools_scm
is defined as"setuptools_scm >= 2.0.0, <3"
. This breaks the build to fail with setuptools-scm > 3.I tested
with
Removing
, <3
from the requirements builds the.whl
file flawlessly.The text was updated successfully, but these errors were encountered: