pyproject: depend on setuptools>=67.0
instead of ~=67.0
.
The latter is overly strict and breaks installation with PDM (which is more principled than our other PEP517 build backends).
This commit is contained in:
parent
1d200f1e4f
commit
4627d8d3c8
|
@ -1,5 +1,5 @@
|
|||
[build-system]
|
||||
requires = ["wheel", "setuptools~=67.0", "setuptools_scm[toml]>=6.2"]
|
||||
requires = ["wheel", "setuptools>=67.0", "setuptools_scm[toml]>=6.2"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
|
|
Loading…
Reference in a new issue