Skip to content

Commit

Permalink
chore(ci): Restore x86 for Windows, will just drop mpl in tox
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Dec 8, 2024
1 parent 81e2e9f commit 6f77556
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-13', 'macos-latest']
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
architecture: ['x64', 'arm64']
architecture: ['x86', 'x64', 'arm64']
dependencies: ['full', 'pre']
include:
# Basic dependencies only
Expand All @@ -127,15 +127,6 @@ jobs:
python-version: "3.9"
architecture: 'x64'
dependencies: 'min'
# Only numpy of the scipy stack still supports win32
- os: windows-latest
python-version: "3.9"
architecture: 'x86'
dependencies: 'none'
- os: windows-latest
python-version: "3.13"
architecture: 'x86'
dependencies: 'none'
exclude:
# Use ubuntu-latest to cover the whole range of Python. For Windows
# and OSX, checking oldest and newest should be sufficient.
Expand All @@ -159,6 +150,13 @@ jobs:
python-version: "3.12"

## Unavailable architectures
# x86 is available for Windows
- os: ubuntu-latest
architecture: x86
- os: macos-latest
architecture: x86
- os: macos-13
architecture: x86
# arm64 is available for macos-14+
- os: ubuntu-latest
architecture: arm64
Expand Down

0 comments on commit 6f77556

Please sign in to comment.