summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-06 12:06:33 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-06 12:06:33 +0200
commit4559eccd8b1c3610f7a82a709929013303368506 (patch)
tree007bb544de3de2539e8e3d95a5b4cdc9a08be117 /.github/workflows
parent59d3fa0aa4ed6628f0dfbe3424c1d7a5c6f9a382 (diff)
Try with devtoolset-8 and boost clone from git
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pip-packaging-osx.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/pip-packaging-osx.yml b/.github/workflows/pip-packaging-osx.yml
index f30b89d8..1f669a5e 100644
--- a/.github/workflows/pip-packaging-osx.yml
+++ b/.github/workflows/pip-packaging-osx.yml
@@ -41,4 +41,6 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
- python -m twine upload --repository-url https://test.pypi.org/legacy/ build/src/python/dist/* \ No newline at end of file
+ mkdir wheelhouse
+ delocate-listdeps build/src/python/dist/* && delocate-wheel --require-archs x86_64 -w wheelhouse build/src/python/dist/*
+ python -m twine upload --repository-url https://test.pypi.org/legacy/ wheelhouse/* \ No newline at end of file