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 df22d5d commit ac06387
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ jobs:
$LOCAL_PYTHON -P setup.py bdist_wheel
if [ "${{ matrix.build-from-source }}" = "true" ]; then
cd ${{github.workspace}}
for file in dist/*.whl; do
# There is only one so we don't need a loop but - meh.
for file in build/dist/*.whl; do
mv "$file" "${file%.whl}_nogil.whl"
done
fi
Expand Down

0 comments on commit ac06387

Please sign in to comment.