We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c78eef commit 1c6aa65Copy full SHA for 1c6aa65
.github/workflows/main.yml
@@ -335,7 +335,7 @@ jobs:
335
- name: Publish package to (Test)PyPI
336
if: needs.prepare.outputs.is_release_build == 'true' && startsWith( matrix.p, 'manylinux' )
337
run: |
338
- sudo pip3 install "twine==6.0.1"
+ python3 -m pip install "twine==6.0.1"
339
python3 -m twine upload --non-interactive --skip-existing dist/*
340
341
@@ -434,7 +434,7 @@ jobs:
434
435
if: needs.prepare.outputs.is_release_build == 'true'
436
437
- sudo pip3 install twine
+ python3 -m pip install twine
438
python3 -m twine upload --non-interactive --skip-existing wheelhouse/*
439
440
0 commit comments