Skip to content

Commit 0fed865

Browse files
authored
Drop support for mac x86 (#1716)
**Context:** Jax dropped mac x86 since 0.5.0: https://github.com/jax-ml/jax/blob/main/CHANGELOG.md#jax-050-jan-17-2025 As a result, we should drop it too if we want to update to latest jax. **Description of the Change:** Drop catalyst support for mac x86. **Benefits:** Quicker CI; keeping up with jax versions. **Possible Drawbacks:** Dropped support for a platform :(
1 parent ebec4ea commit 0fed865

File tree

6 files changed

+38
-464
lines changed

6 files changed

+38
-464
lines changed

.github/workflows/build-nightly-release.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,9 @@ jobs:
4545
needs: [setup]
4646
uses: ./.github/workflows/build-wheel-macos-arm64.yaml
4747

48-
# macos-x86:
49-
# name: Build on macOS x86-64
50-
# needs: [setup]
51-
# uses: ./.github/workflows/build-wheel-macos-x86_64.yaml
52-
5348
upload:
5449
name: Prepare & Upload wheels to TestPyPI
55-
needs: [linux-x86, macos-arm, linux-aarch] #, macos-x86
50+
needs: [linux-x86, macos-arm, linux-aarch]
5651
runs-on: ubuntu-22.04
5752
permissions:
5853
id-token: write # IMPORTANT: mandatory for trusted publishing
@@ -72,8 +67,6 @@ jobs:
7267
run: |
7368
rename "s/linux/manylinux_2_28/" dist/PennyLane_Catalyst-*
7469
rename "s/linux/manylinux_2_28/" dist/pennylane_catalyst-*
75-
rename "s/macosx_13_0_universal2/macosx_13_0_x86_64/" dist/PennyLane_Catalyst-*
76-
rename "s/macosx_13_0_universal2/macosx_13_0_x86_64/" dist/pennylane_catalyst-*
7770
rename "s/macosx_14_0_universal2/macosx_13_0_arm64/" dist/PennyLane_Catalyst-*
7871
rename "s/macosx_14_0_universal2/macosx_13_0_arm64/" dist/pennylane_catalyst-*
7972
rename "s/macosx_14/macosx_13/" dist/PennyLane_Catalyst-*

0 commit comments

Comments
 (0)