Skip to content

Commit 6e45e3a

Browse files
committed
Disable macos
1 parent e023172 commit 6e45e3a

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/tests-dev.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.10", "3.13"]
13+
python-version:
14+
- "3.10"
15+
- "3.13"
1416

1517
steps:
1618
- uses: actions/checkout@v5

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,13 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: ["3.10", "3.13"]
14+
os:
15+
- ubuntu-latest
16+
#- macos-latest # see issue #271
17+
- windows-latest
18+
python-version:
19+
- "3.10"
20+
- "3.13"
1621

1722
steps:
1823
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)