From dab38d575fc5ff2a571b8b60f8a7a273ecb6bdd4 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 24 May 2023 13:51:43 +0100 Subject: [PATCH] call cibuildwheel on the current directory since we no longer run on distinct submodule directory --- .github/workflows/wheels.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 17506ec30..d5f8b9bfa 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -12,7 +12,6 @@ on: env: PROJECT_NAME: fonttools - PACKAGE_DIR: src/fonttools # skip binary wheels for pypy (preferable to use pure-python) and 32-bit Linux CIBW_SKIP: pp* cp*linux_i686 CIBW_ENVIRONMENT: FONTTOOLS_WITH_CYTHON=1 @@ -81,7 +80,7 @@ jobs: run: pip install git+https://github.com/anthrotype/cibuildwheel.git@test_command_wheel#egg=cibuildwheel - name: Build Wheels - run: python -m cibuildwheel --output-dir wheelhouse "${PACKAGE_DIR}" + run: python -m cibuildwheel --output-dir wheelhouse . env: CIBW_BUILD: ${{ matrix.build }} CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.CIBW_MANYLINUX_I686_IMAGE }} @@ -110,7 +109,7 @@ jobs: - name: Install dependencies run: pip install git+https://github.com/anthrotype/cibuildwheel.git@test_command_wheel#egg=cibuildwheel - name: Build Wheels - run: python -m cibuildwheel --output-dir wheelhouse "${PACKAGE_DIR}" + run: python -m cibuildwheel --output-dir wheelhouse . env: CIBW_BUILD: cp${{ matrix.python }}-* CIBW_ARCHS: ${{ matrix.arch }}