aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorCatherine <whitequark@whitequark.org>2023-08-22 17:28:32 +0000
committerCatherine <whitequark@whitequark.org>2023-08-22 17:33:30 +0000
commit91ffa38e788a691464a6873d44537eece72ef76e (patch)
treeeb3eb0f94e830716a5f11df837af525db1ac660b /pyproject.toml
parent1a9eb2484041a0d635decbae71a69536017b15f7 (diff)
pyproject: depend on setuptools>=67.0, not ~=67.0.
This causes downstream dependency resolution issues.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index ee3c4df..3aa0a13 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -19,7 +19,7 @@ dependencies = [
# Build system configuration
[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"
[tool.setuptools]