Skip to content

Commit bcc3dea

Browse files
committed
fix free threading name
1 parent 8d65c8c commit bcc3dea

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ concurrency:
77

88
jobs:
99
build-and-test:
10-
name: Testing (Python ${{ matrix.python-version }}, on ${{ matrix.os }}, with MKL ${{ matrix.mkl-version }})
10+
name: Testing (Python ${{ matrix.python-version }}${{ matrix.free-threaded && 't' || '' }}, on ${{ matrix.os }}, with MKL ${{ matrix.mkl-version }})
1111
runs-on: ${{ matrix.os }}
1212
defaults:
1313
run:
@@ -23,6 +23,10 @@ jobs:
2323
- os: ubuntu-latest
2424
python-version: "3.12"
2525
coverage: ${{ true }}
26+
- os: macos-15-intel
27+
python-version: "3.11"
28+
mkl-version: "2023"
29+
free-threaded:
2630
- os: macos-15-intel
2731
python-version: "3.12"
2832
mkl-version: "2023"
@@ -48,7 +52,7 @@ jobs:
4852
- name: Create environment
4953
run: |
5054
conda install --quiet --yes -c conda-forge \
51-
${{ matrix.free-threaded && 'python-freethreaded' || 'python' }}=${{ matrix.python-version }} \
55+
${{ matrix.free-threaded && 'python-freethreading' || 'python' }}=${{ matrix.python-version }} \
5256
pip numpy scipy cython mkl=${{ matrix.mkl-version }} pytest \
5357
mkl-devel pkg-config meson-python meson ninja setuptools_scm \
5458
${{ matrix.coverage && 'coverage' || ''}} \

0 commit comments

Comments
 (0)