Skip to content

forgot variable

forgot variable #17

# # This workflow will build and (if release) publish Python distributions to PyPI
# # For more information see:
# # - https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# # - https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
# # - Adapted from https://github.com/Farama-Foundation/PettingZoo/blob/e230f4d80a5df3baf9bd905149f6d4e8ce22be31/.github/workflows/build-publish.yml
# name: build-publish
# on: push
# jobs:
# build_wheels:
# name: Build wheels on ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [macos-latest]
# steps:
# - uses: actions/checkout@v3
# - name: Set up QEMU
# if: runner.os == 'Linux'
# uses: docker/setup-qemu-action@v2
# with:
# platforms: all
# - name: Build wheels
# uses: pypa/[email protected]
# env:
# # Configure cibuildwheel to build native archs, and some emulated ones
# # CIBW_ARCHS_LINUX: x86_64 aarch64 # - disable ARM, as it's not working for a moment
# CIBW_ARCHS_MACOS: universal2 # arm64 # - macos is disabled for a moment
# CIBW_BUILD_VERBOSITY: 3 # Increase verbosity to see what's going on
# # CIBW_REPAIR_WHEEL_COMMAND_LINUX: > # Print additional info from auditwheel
# # auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel}
# - name: Report built wheels
# run: |
# ls -l ./wheelhouse/*.whl
# # build_sdist:
# # name: Build source distribution
# # runs-on: ubuntu-latest
# # steps:
# # - uses: actions/checkout@v3
# # - name: Build sdist
# # run: pipx run build --sdist