Skip to content

Commit 9bbbb58

Browse files
committed
Fix the issue of installing Python package within Poetry virtual runtime environment.
1 parent 5f1e79e commit 9bbbb58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pre-building_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
if: ${{ inputs.build-type == 'poetry' }}
8282
run: |
8383
poetry build
84-
pip3 install ./dist/*.whl || exit 1
84+
poetry run pip3 install ./dist/*.whl || exit 1
8585
8686
- name: Show the Python package information
8787
run: pip3 show ${{ inputs.python_package_name }}

0 commit comments

Comments
 (0)