From 4b10459ffd5fb947db414c4e9a4c3c008e38efdf Mon Sep 17 00:00:00 2001 From: Alexander Shved <51724651+esalx@users.noreply.github.com> Date: Mon, 22 Jul 2024 23:35:06 -0500 Subject: [PATCH] test --- .github/workflows/python-test-pypi.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-test-pypi.yml b/.github/workflows/python-test-pypi.yml index 92ebdd3..e4dfd57 100644 --- a/.github/workflows/python-test-pypi.yml +++ b/.github/workflows/python-test-pypi.yml @@ -39,7 +39,7 @@ jobs: needs: git_describe env: # Use pretend version for testing purposes - SETUPTOOLS_SCM_PRETEND_VERSION_FOR_molli: ${{ needs.git_describe.version }} + SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MOLLI: ${{ needs.git_describe.version }} steps: - uses: actions/checkout@v4 @@ -56,10 +56,12 @@ jobs: runs-on: ${{ matrix.os }} needs: git_describe env: - # only build for python=3.11 + # only build for python=3.11 and 64-bit systems CIBW_BUILD: cp311-* + CIBW_SKIP: "*-win32 *-manylinux_i686" # Use pretend version for testing purposes - SETUPTOOLS_SCM_PRETEND_VERSION_FOR_molli: ${{ needs.git_describe.version }} + CIBW_ENVIRONMENT: "SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MOLLI=${{ needs.git_describe.version }};" + SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MOLLI: ${{ needs.git_describe.version }} strategy: matrix: os: [ubuntu-latest, windows-latest]