Commit Diff


commit - 6b5f614d1011fa5f2114d491155a4aefa6c2ba2f
commit + b1fcc24148e1ffd22939b8aaa08ed9f1c5155278
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'"