Skip to content

Commit

Permalink
added additional variable to simplify handling
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmayshah99 committed Oct 15, 2023
1 parent d9089e2 commit feaef72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ jobs:
pip install cibuildwheel
export CIBW_PLATFORM=linux
# Set for which Python version to build.
py_version=${matrix.python-version//.} # 3.11 -> 311
system_python_version=${{ matrix.python-version }}
py_version=${system_python_version//.} # 3.11 -> 311
EXPORT CIBW_BUILD=cp${py_version}-manylinux_x86_64
# Build wheel
echo "Building ${CIBW_BUILD} wheel"
Expand Down

0 comments on commit feaef72

Please sign in to comment.