Skip to content

Commit 12a7ab1

Browse files
Use conda-forge channel, run clang workflow on Python 3.12
1 parent 433455a commit 12a7ab1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-with-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup Python
3636
uses: actions/setup-python@v5
3737
with:
38-
python-version: '3.11'
38+
python-version: '3.12'
3939
architecture: x64
4040

4141
- name: Checkout repo

.github/workflows/conda-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: conda install conda-build
4141
- name: Build conda package
4242
run: |
43-
CHANNELS="-c intel -c defaults --override-channels"
43+
CHANNELS="-c conda-forge --override-channels"
4444
VERSIONS="--python ${{ matrix.python }}"
4545
TEST="--no-test"
4646
@@ -104,7 +104,7 @@ jobs:
104104
runner: [ubuntu-latest]
105105
continue-on-error: ${{ matrix.experimental }}
106106
env:
107-
CHANNELS: -c intel -c defaults --override-channels
107+
CHANNELS: -c conda-forge --override-channels
108108

109109
steps:
110110
- name: Download artifact
@@ -171,7 +171,7 @@ jobs:
171171
runner: [windows-latest]
172172
continue-on-error: ${{ matrix.experimental }}
173173
env:
174-
CHANNELS: -c intel -c defaults --override-channels
174+
CHANNELS: -c conda-forge --override-channels
175175

176176
steps:
177177
- name: Download artifact

0 commit comments

Comments
 (0)