Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ jobs:
with:
python-version: "3.11"

# Click is pinned because of:
# https://github.com/pallets/click/issues/3065
- name: "Install python dependencies"
run: |
echo ::group::PYDEPS
pip install bump-my-version towncrier
pip install bump-my-version towncrier 'click<8.3'
echo ::endgroup::

- name: "Configure Git with pulpbot name and email"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: "Install python dependencies"
run: |
echo ::group::PYDEPS
pip install towncrier twine wheel httpie docker netaddr boto3 'ansible~=10.3.0' mkdocs jq jsonpatch bump-my-version
pip install towncrier twine wheel httpie docker netaddr boto3 'ansible~=10.3.0' mkdocs jq jsonpatch bump-my-version 'click<8.3'
echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/pulp_hugging_face/.ci/assets/httpie/" >> $GITHUB_ENV
echo ::endgroup::

Expand Down
3 changes: 3 additions & 0 deletions lint_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
# For more info visit https://github.com/pulp/plugin_template

black==24.3.0
# Click is pinned because of:
# https://github.com/pallets/click/issues/3065
click<8.3
bump-my-version
check-manifest
flake8
Expand Down