Skip to content

Commit d20823e

Browse files
committed
0.5.0 RC 2
1 parent df3d35b commit d20823e

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/ci.yml

+13-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches:
88
- master
99
release:
10-
types: [published]
10+
types: published
1111

1212
jobs:
1313
tar_gz:
@@ -53,11 +53,13 @@ jobs:
5353
- uses: actions/checkout@master
5454
- uses: actions/setup-python@master
5555
- run: echo '::add-matcher::.github/problem-matchers/gcc.json'
56-
if: matrix.os == 'macos-13' || matrix.os == 'ubuntu-22.04'
56+
if: startsWith(matrix.os, 'macos-') || startsWith(matrix.os, 'ubuntu-')
5757
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
58-
if: matrix.os == 'windows-2022'
58+
if: startsWith(matrix.os, 'windows-')
5959

6060
- run: pip install pipx
61+
if: startsWith(matrix.os, 'macos-')
62+
6163
- uses: pypa/[email protected]
6264
with:
6365
output-dir: dist
@@ -86,11 +88,13 @@ jobs:
8688
- uses: actions/checkout@master
8789
- uses: actions/setup-python@master
8890
- run: echo '::add-matcher::.github/problem-matchers/gcc.json'
89-
if: matrix.os == 'macos-13' || matrix.os == 'ubuntu-22.04'
91+
if: startsWith(matrix.os, 'macos-') || startsWith(matrix.os, 'ubuntu-')
9092
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
91-
if: matrix.os == 'windows-2022'
93+
if: startsWith(matrix.os, 'windows-')
9294

9395
- run: pip install pipx
96+
if: startsWith(matrix.os, 'macos-')
97+
9498
- uses: pypa/[email protected]
9599
with:
96100
output-dir: dist
@@ -119,11 +123,13 @@ jobs:
119123
- uses: actions/checkout@master
120124
- uses: actions/setup-python@master
121125
- run: echo '::add-matcher::.github/problem-matchers/gcc.json'
122-
if: matrix.os == 'macos-13' || matrix.os == 'ubuntu-22.04'
126+
if: startsWith(matrix.os, 'macos-') || startsWith(matrix.os, 'ubuntu-')
123127
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
124-
if: matrix.os == 'windows-2022'
128+
if: startsWith(matrix.os, 'windows-')
125129

126130
- run: pip install pipx
131+
if: startsWith(matrix.os, 'macos-')
132+
127133
- uses: pypa/[email protected]
128134
with:
129135
output-dir: dist

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ What is New in ArrayKit
4343

4444
Now building wheels for 3.12.
4545

46-
Now building functional wheels for Mac OS ``arm64`` / Apple Silicon
46+
Now building functional wheels for Mac OS ``arm64`` / Apple Silicon.
4747

4848

4949
0.4.11

0 commit comments

Comments
 (0)