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 478cdc6 commit 86a7d4dCopy full SHA for 86a7d4d
.github/workflows/wheels.yml
@@ -147,7 +147,10 @@ jobs:
147
path: dist/
148
149
- name: Update LICENSE for binary distrobution
150
- run: cat ${{ github.workspace }}/tools/wheels/LICENSE_binary.txt >> dist/${{ needs.build_sdist.outputs.SDIST_NAME }}/LICENSE/LICENSE
+ run: |
151
+ tar -xvf dist/${{ needs.build_sdist.outputs.SDIST_NAME }} working
152
+ cat ${{ github.workspace }}/tools/wheels/LICENSE_binary.txt >> working/LICENSE/LICENSE
153
+ tar -cvf dist/${{ needs.build_sdist.outputs.SDIST_NAME }} working
154
155
- name: Build wheels for CPython 3.14
156
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
0 commit comments