Skip to content

Commit 9e2ddfc

Browse files
committed
Update CI files
1 parent f4d2989 commit 9e2ddfc

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ jobs:
3232
with:
3333
python-version: "3.11"
3434

35+
# Click is pinned because of:
36+
# https://github.com/pallets/click/issues/3065
3537
- name: "Install python dependencies"
3638
run: |
3739
echo ::group::PYDEPS
38-
pip install bump-my-version towncrier
40+
pip install bump-my-version towncrier 'click<8.3'
3941
echo ::endgroup::
4042
4143
- name: "Configure Git with pulpbot name and email"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: "Install python dependencies"
7272
run: |
7373
echo ::group::PYDEPS
74-
pip install towncrier twine wheel httpie docker netaddr boto3 'ansible~=10.3.0' mkdocs jq jsonpatch bump-my-version
74+
pip install towncrier twine wheel httpie docker netaddr boto3 'ansible~=10.3.0' mkdocs jq jsonpatch bump-my-version 'click<8.3'
7575
echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/pulp_python/.ci/assets/httpie/" >> $GITHUB_ENV
7676
echo ::endgroup::
7777

lint_requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
# For more info visit https://github.com/pulp/plugin_template
77

88
black==24.3.0
9+
# Click is pinned because of:
10+
# https://github.com/pallets/click/issues/3065
11+
click<8.3
912
bump-my-version
1013
check-manifest
1114
flake8

0 commit comments

Comments
 (0)