Skip to content

Commit

Permalink
Add python source build
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicField committed Oct 8, 2024
1 parent ed82c3d commit df22d5d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ jobs:
run: |
$LOCAL_PYTHON -P setup.py bdist_wheel
if [ "${{ matrix.build-from-source }}" = "true" ]; then
mv dist/*.whl dist/*_nogil.whl
cd ${{github.workspace}}
for file in dist/*.whl; do
mv "$file" "${file%.whl}_nogil.whl"
done
fi
shell: bash

Expand Down

0 comments on commit df22d5d

Please sign in to comment.