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:
Catherine 2023-07-21 03:28:48 +00:00
parent 1d200f1e4f
commit 4627d8d3c8

View file

@ -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]