Skip to content

Commit 9bf663d

Browse files
INTEG-2942 - unpin click in workflows
1 parent 76973e5 commit 9bf663d

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: python -m pip install --upgrade pip
2626

2727
- name: Install click
28-
run: pip install click===8.1.8
28+
run: pip install click>=8.2
2929

3030
- name: Install hatch
3131
run: |

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Ensure latest pip
2222
run: python -m pip install --upgrade pip
2323
- name: Install click
24-
run: pip install click==8.1.8
24+
run: pip install click>=8.2
2525
- name: Install hatch
2626
run: pip install hatch
2727
- name: Build docs

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: python -m pip install --upgrade pip
1919

2020
- name: Install click
21-
run: pip install click===8.1.8
21+
run: pip install click>=8.2
2222

2323
- name: Install dependencies
2424
run: |

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: python -m pip install --upgrade pip
2323

2424
- name: Install click
25-
run: pip install click===8.1.8
25+
run: pip install click>=8.2
2626

2727
- name: Install hatch
2828
run: pip install hatch

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ dependencies = [
9393
"pytest-cov",
9494
"pytest-mock",
9595
"pytest-httpserver",
96-
"click===8.1.8",
96+
"click>=8.2",
9797
"chardet",
9898
"python-dateutil",
9999
]

0 commit comments

Comments
 (0)