Skip to content

Commit

Permalink
fix: pipをpython -m pipの形で使うように変更 (#1523)
Browse files Browse the repository at this point in the history
  • Loading branch information
takana-v authored Feb 2, 2025
1 parent d135209 commit ab1df7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/prepare_python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:

- name: <Setup> Install Python dependencies
if: ${{ inputs.only-export-python-version == 'false' }}
run: pip install -r requirements${{ inputs.requirements-suffix }}.txt
run: python -m pip install -r requirements${{ inputs.requirements-suffix }}.txt
shell: bash

- name: <Deploy> Export Python version
Expand Down

0 comments on commit ab1df7e

Please sign in to comment.