Skip to content

Commit

Permalink
[build_wheels.yml] Revert back to Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
kaydeearts committed Nov 4, 2024
1 parent 1a21635 commit 437fafe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ jobs:
with:
fetch-depth: 0 # unshallow fetch for setuptools-scm

- name: Install Python 3.11
uses: actions/setup-python@v5
- name: Install Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.9'

- name: Build wheel (only macosx_universal2)
if: matrix.os == 'macos-latest'
uses: pypa/[email protected]
with:
output-dir: dist
env:
CIBW_BUILD: "cp311-*"
CIBW_BUILD: "cp39-*"
CIBW_ARCHS_MACOS: universal2
CIBW_ENVIRONMENT_MACOS: "CFLAGS='-arch arm64 -arch x86_64 -I/usr/include/libxml2' CXXFLAGS='-arch arm64 -arch x86_64' LDFLAGS='-arch arm64 -arch x86_64'"

Expand All @@ -51,7 +51,7 @@ jobs:
with:
output-dir: dist
env:
CIBW_BUILD: "cp311-*"
CIBW_BUILD: "cp39-*"
CIBW_ARCHS_MACOS: x86_64
CIBW_ARCHS_WINDOWS: AMD64
CIBW_ARCHS_LINUX: x86_64
Expand Down

0 comments on commit 437fafe

Please sign in to comment.