Skip to content

Commit e1b5034

Browse files
committed
[ci skip] wheel download instructions
1 parent f75dad8 commit e1b5034

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,18 @@ Install whichever version of Python from the [official website](https://www.pyth
7575
/Library/Frameworks/Python.framework/Versions/[version]/bin/python -m pip install cibuildwheel
7676
CIBW_BUILD="cp311-*" python -m cibuildwheel --output-dir wheelhouse --platform macos
7777

78+
## Downloading all the artifacts
79+
80+
A successful [.github/workflows/wheels.yml](.github/workflows/wheels.yml) run will a lot of `.whl` files. To download these all at once, you can use the following command:
81+
82+
mkdir wheelhouse
83+
cd wheelhouse
84+
gh run download [runid]
85+
86+
Then these can be uploaded to pypi using:
87+
88+
python -m twine upload --repository testpypi wheelhouse/*/*.whl wheelhouse/*/*.tar.gz
89+
7890
## Acknowledgements
7991

8092
The original python bindings were generated and maintained by

0 commit comments

Comments
 (0)