8000 Add pydantic as a build dependency as possible workaround for failing… · python/importlib_metadata@fdbcb79 · GitHub
[go: up one dir, main page]

Skip to content

Commit fdbcb79

Browse files
committed
Add pydantic as a build dependency as possible workaround for failing CI build.
1 parent 71cec30 commit fdbcb79

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
[build-system]
2-
requires = ["setuptools>=56", "setuptools_scm[toml]>=3.4.1"]
2+
requires = [
3+
"setuptools>=56",
4+
"setuptools_scm[toml]>=3.4.1",
5+
# temporary workaround for dependency race in setuptools_scm
6+
# https://github.com/python/importlib_metadata/pull/389#issuecomment-1164912426
7+
'pydantic; python_version < "3.8"',
8+
]
39
build-backend = "setuptools.build_meta"
410

511
[tool.black]

0 commit comments

Comments
 (0)
0