Skip to content

Commit 9a96b79

Browse files
committed
🔧 Template: add click~=8.2.1 to GitHub workflows
`click==8.3.0` is breaking hatch run commands, see pypa/hatch#2050 Here we temporarily pin `click==8.2.1` in the GitHub workflows for the template.
1 parent f04576b commit 9a96b79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎template/.github/workflows/.ci.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: '3.13'
1515

1616
- name: Install Hatch
17-
run: pip install --upgrade pip hatch
17+
run: pip install click==8.2.1 hatch
1818

1919
- name: Run pre-commit
2020
run: hatch run precommit:run

‎template/.github/workflows/{% if doc_deploy == 'github' and docs == 'mkdocs' %}deploy-mkdocs.yaml{% endif %}‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
python-version: 3.x
1919

2020
# Use configured `hatch` environment for MkDocs deployment
21-
- run: pip install hatch
21+
- run: pip install click==8.2.1 hatch
2222
- run: hatch run docs:deploy

0 commit comments

Comments
 (0)