Skip to content

Commit eb97892

Browse files
build: pin click version to correct version (#95)
I manually tested that 8.3.0 is causing the commit sha not found cli issue so i'm manually pinning the version to avoid that for now. not sure what the root cause is, just treating the symptom that 8.3 breaks things for now. See previous commits on this PRs' CI runs for the proof that 8.3 is broken
1 parent a1f1126 commit eb97892

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

codecov-cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ maintainers = [
1212
]
1313
requires-python = ">= 3.9"
1414
dependencies = [
15-
"click==8.*",
15+
"click>=8.0.0,<8.3.0",
1616
"ijson==3.*",
1717
"PyYAML==6.*",
1818
"responses==0.21.*",

prevent-cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [{ name = "Sentry", email = "oss@sentry.io" }]
99
requires-python = ">=3.9"
1010
dependencies = [
1111
"codecov-cli==11.2.2",
12-
"click==8.*",
12+
"click>=8.0.0,<8.3.0",
1313
"sentry-sdk==2.*",
1414
]
1515

0 commit comments

Comments
 (0)