Skip to content

Commit 39c78de

Browse files
Replace use of -c intel channel, replace use of -c main
1 parent 8fcf5e4 commit 39c78de

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/conda-package.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python: ['3.10']
14+
python: ['3.10', '3.11', '3.12']
1515
steps:
1616
- uses: actions/checkout@v3
1717
with:
@@ -38,7 +38,7 @@ jobs:
3838
run: conda install conda-build
3939
- name: Build conda package
4040
run: |
41-
CHANNELS="-c conda-forge -c intel --override-channels"
41+
CHANNELS="-c conda-forge -c https://software.repos.intel.com/python/conda --override-channels"
4242
VERSIONS="--python ${{ matrix.python }}"
4343
TEST="--no-test"
4444
@@ -59,12 +59,12 @@ jobs:
5959

6060
strategy:
6161
matrix:
62-
python: ['3.10']
62+
python: ['3.10', '3.11', '3.12']
6363
experimental: [false]
6464
runner: [ubuntu-latest]
6565
continue-on-error: ${{ matrix.experimental }}
6666
env:
67-
CHANNELS: -c intel -c main --override-channels
67+
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
6868

6969
steps:
7070
- name: Download artifact
@@ -121,7 +121,7 @@ jobs:
121121

122122
strategy:
123123
matrix:
124-
python: ['3.10']
124+
python: ['3.10', '3.11', '3.12']
125125
env:
126126
conda-bld: C:\Miniconda\conda-bld\win-64\
127127
steps:
@@ -147,7 +147,7 @@ jobs:
147147
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-python-${{ matrix.python }}-
148148
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
149149
- name: Build conda package
150-
run: conda build --no-test --python ${{ matrix.python }} -c intel -c conda-forge --override-channels conda-recipe
150+
run: conda build --no-test --python ${{ matrix.python }} -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels conda-recipe
151151
- name: Upload artifact
152152
uses: actions/upload-artifact@v3
153153
with:
@@ -162,13 +162,13 @@ jobs:
162162
shell: cmd /C CALL {0}
163163
strategy:
164164
matrix:
165-
python: ['3.10']
165+
python: ['3.10', '3.11', '3.12']
166166
experimental: [false]
167167
runner: [windows-latest]
168168
continue-on-error: ${{ matrix.experimental }}
169169
env:
170170
workdir: '${{ github.workspace }}'
171-
CHANNELS: -c intel -c conda-forge --override-channels
171+
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
172172

173173
steps:
174174
- name: Download artifact

0 commit comments

Comments
 (0)