Skip to content

Commit edfed22

Browse files
authored
Fix setuptools dependency (#387)
It looks like the deependency got a bit mixed up at some point, and `types-setuptools` dependency started getting widenned and the real optional dependency (for `api`) stopped being widenned. We'll probably need to keep an eye on dependabot to see if this was done by dependabot, but even if it is not, it is failing to widden the `setuptools` dependency for some reason.
2 parents afdfbc5 + a1fa91f commit edfed22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ actor = []
5757
api = [
5858
"grpcio-tools >= 1.47.0, < 2",
5959
"mypy-protobuf >= 3.0.0, < 4",
60-
"setuptools >= 67.6.0, < 76",
60+
"setuptools >= 67.6.0, < 79",
6161
]
6262
app = []
6363
lib = []
@@ -88,7 +88,7 @@ dev-mkdocs = [
8888
]
8989
dev-mypy = [
9090
"mypy == 1.15.0",
91-
"types-setuptools >= 67.6.0, < 79", # Should match the build dependency
91+
"types-setuptools >= 67.6.0, < 79", # Should match the api dependency
9292
"types-Markdown == 3.7.0.20250322",
9393
"types-PyYAML == 6.0.12.20250326",
9494
"types-babel == 2.11.0.15",

0 commit comments

Comments
 (0)