We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb57e8 commit 3acfd02Copy full SHA for 3acfd02
1 file changed
.github/workflows/build-publish.yml
@@ -63,11 +63,13 @@ jobs:
63
build-requirements: 'poetry-core setuptools https://github.com/agates/capnpy/releases/download/0.9.1dev0/capnpy-0.9.1.dev0-py3-none-any.whl'
64
pip-wheel-args: '-w ./dist --no-deps --no-build-isolation'
65
system-packages: 'capnproto'
66
+ - name: Fix dist permissions
67
+ run: sudo chmod -R 777 dist
68
- name: Rename pypy package build
69
run: |
70
old=$(ls -1 dist/*pp39-pypy39_pp73*.whl)
71
new=$(echo $old | sed -e 's/pp39-pypy39_pp73-manylinux_2_17_x86_64/py3-none-any/')
- sudo mv -v "$old" "$new"
72
+ mv -v "$old" "$new"
73
- name: Build sdist
74
run: poetry build --format sdist
75
#- name: Publish wheels to PyPI
0 commit comments