Skip to content
Closed
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/manual_pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
pip install --upgrade hatch "click<8.3" "virtualenv<21"
pip install --upgrade hatch "click<8.3"
Copy link
Copy Markdown
Contributor

@epmog epmog Mar 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

won't work for this action since python 3.9 is specified, should prob just update the python version to something newer

- name: Build
run: hatch -v build
# # See https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-pypi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
pip install --upgrade hatch "click<8.3" "virtualenv<21"
pip install --upgrade hatch "click<8.3"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as above

- name: Build
run: hatch -v build
# # See https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-pypi
Expand Down
2 changes: 1 addition & 1 deletion pipeline/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

pip install --upgrade pip
pip install --upgrade hatch "click<8.3" "virtualenv<21"
pip install --upgrade hatch "click<8.3"
pip install --upgrade twine
hatch run lint
hatch run test
Expand Down
Loading