Skip to content

Commit 09ae90a

Browse files
committed
avoid setuptools_scm version 8.0.0
due to the bug described at pypa/setuptools-scm#905
1 parent 240cbd7 commit 09ae90a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@
158158
python_requires=">=3.8",
159159
setup_requires=[
160160
"setuptools>=61.2",
161-
"setuptools_scm[toml]>=6.2",
161+
"setuptools_scm[toml]>=6.2, !=8.0.0", # version 8.0.0 had a bug as described at
162+
# https://github.com/pypa/setuptools_scm/issues/905
162163
],
163164
install_requires=[
164165
# ---

0 commit comments

Comments
 (0)