commit c5b61f2afaf80bdbc222fd88d67189cf13c668d7 from: Jelmer Vernooij via: GitHub date: Fri Sep 02 16:36:01 2022 UTC Merge pull request #1022 from bparzella/master Add 32 bit architecture wheels for windows commit - 6b5f614d1011fa5f2114d491155a4aefa6c2ba2f commit + c5b61f2afaf80bdbc222fd88d67189cf13c668d7 blob - fcb45e253adaaf55f1ca3e08e4183327a8e219b1 blob + d13985a3fe4bd97871756d041be847aac09b442a --- .github/workflows/pythonwheels.yml +++ .github/workflows/pythonwheels.yml @@ -13,10 +13,14 @@ jobs: matrix: os: [macos-latest, windows-latest] python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-rc - 3.11"] + architecture: ["x64", "x86"] include: - os: ubuntu-latest python-version: "3.x" # path encoding + exclude: + - os: macos-latest + architecture: "x86" fail-fast: true steps: @@ -25,6 +29,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + architecture: ${{ matrix.architecture }} - name: Install native dependencies (Ubuntu) run: sudo apt-get update && sudo apt-get install -y libgpgme-dev libgpg-error-dev if: "matrix.os == 'ubuntu-latest'"