We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ffd6b commit 7422a22Copy full SHA for 7422a22
1 file changed
.github/workflows/continuous-integration.yml
@@ -33,6 +33,9 @@ jobs:
33
- "3.10"
34
- "3.11"
35
- "3.12"
36
+ exclude:
37
+ - os: macos-latest
38
+ py: "3.8"
39
40
steps:
41
- name: Configure hostname
@@ -51,7 +54,7 @@ jobs:
51
54
uses: actions/setup-python@v5
52
55
with:
53
56
python-version: ${{ matrix.py }}
- architecture: x64
57
+ architecture: ${{ startsWith(matrix.os, 'macos-') && 'arm64' || 'x64' }}
58
59
- name: Install
60
run: python -m pip install .[mpi,test,ai] pytest-cov
@@ -93,7 +96,7 @@ jobs:
93
96
- macos-latest
94
97
py:
95
98
- # - "3.12"
99
+ - "3.12"
100
101
102
@@ -104,7 +107,7 @@ jobs:
104
107
105
108
106
109
110
111
112
113
run: python -m pip install .[test,ai]
0 commit comments