diff --git a/.github/workflows/build-python-artifacts.yml b/.github/workflows/build-python-artifacts.yml index ad33e69..ba167e2 100644 --- a/.github/workflows/build-python-artifacts.yml +++ b/.github/workflows/build-python-artifacts.yml @@ -52,7 +52,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest, macos-latest] steps: - name: Check out repository uses: actions/checkout@v4 diff --git a/python/pyproject.toml b/python/pyproject.toml index ad586ca..ff4e6d7 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -69,3 +69,9 @@ test-extras = "test" [tool.cibuildwheel.linux] archs = ["x86_64", "aarch64"] + +[tool.cibuildwheel.windows] +archs = ["AMD64"] + +[tool.cibuildwheel.macos] +archs = ["all"]