Skip to content

Commit

Permalink
Fix docker-image pipeline
Browse files Browse the repository at this point in the history
pip isn't allowing a system-wide install anymore by default. Let's try
a user install instead.
  • Loading branch information
jgosmann committed Oct 15, 2024
1 parent 5a6bbae commit ccc57a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/check-prerelease/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
using: composite
steps:
- name: Install packaging
run: pip install packaging
run: pip install --user packaging
shell: bash

- name: Check if prerelease
Expand Down

0 comments on commit ccc57a5

Please sign in to comment.