Skip to content

Commit de59015

Browse files
committed
fix: remove python -m in poetry install script
1 parent 61b9499 commit de59015

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,12 @@ runs:
149149
- name: Install Python dependencies (Poetry)
150150
if: ${{ inputs.auto-install == 'true' && inputs.package-manager == 'poetry' && inputs.frozen-lockfile == 'true' }}
151151
shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }}
152-
run: python -m poetry install --sync
152+
run: poetry install --sync
153153

154154
- name: Install Python dependencies (Poetry, no-frozen-lockfile)
155155
if: ${{ inputs.auto-install == 'true' && inputs.package-manager == 'poetry' && inputs.frozen-lockfile == 'false' }}
156156
shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }}
157-
run: python -m poetry install
157+
run: poetry install
158158

159159
# auto install (uv)
160160

0 commit comments

Comments
 (0)