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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,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 'click<8.3'
pip install towncrier twine wheel httpie docker netaddr boto3 'ansible~=10.3.0' mkdocs jq jsonpatch bump-my-version
echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/pulp_catdog/.ci/assets/httpie/" >> $GITHUB_ENV
echo ::endgroup::

Expand Down
3 changes: 0 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Click is pinned because of:
# https://github.com/pallets/click/issues/3065
click<8.3
# This needs to match the version in templates/github/lint_requirement.txt.j2
black==24.3.0
jinja2
Expand Down
4 changes: 1 addition & 3 deletions templates/github/.github/workflows/release.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ jobs:

{{ setup_python() | indent(6) }}

# Click is pinned because of:
# https://github.com/pallets/click/issues/3065
{{ install_python_deps(["bump-my-version", "towncrier", "click<8.3"]) | indent(6) }}
{{ install_python_deps(["bump-my-version", "towncrier"]) | indent(6) }}

{{ configure_git() | indent(6) }}

Expand Down
2 changes: 1 addition & 1 deletion templates/github/.github/workflows/test.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
{%- endfor %}
{%- endif %}

{{ install_python_deps(["build", "towncrier", "twine", "wheel", "httpie", "docker", "netaddr", "boto3", "ansible~=10.3.0", "mkdocs", "jq", "jsonpatch", "bump-my-version", "click<8.3"]) | indent(6) }}
{{ install_python_deps(["build", "towncrier", "twine", "wheel", "httpie", "docker", "netaddr", "boto3", "ansible~=10.3.0", "mkdocs", "jq", "jsonpatch", "bump-my-version"]) | indent(6) }}

{{ setup_env() | indent(6) }}

Expand Down
3 changes: 0 additions & 3 deletions templates/github/lint_requirements.txt.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
{% if black -%}
black=={{ black_version }}
{% endif -%}
# Click is pinned because of:
# https://github.com/pallets/click/issues/3065
click<8.3
bump-my-version
check-manifest
flake8
Expand Down