Skip to content

Commit ccc36a2

Browse files
authored
Bump conda versions (#2466)
The PR updates `conda-build` version to `25.0.0` and `conda-index` vrsion to `0.6.1`. Also the conda packages are now supporting python 3.13, so removing all w/a or limitation due to that in affected GH actions.
1 parent a4aa964 commit ccc36a2

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

.github/workflows/conda-package.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,6 @@ jobs:
191191
echo PACKAGE_VERSION=${PACKAGE_VERSION}
192192
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
193193
194-
# conda-index does not support python 3.13, but we need to test DPNP package with python 3.13
195-
- name: Remove conda-index
196-
run: mamba remove conda-index
197-
198194
- name: Install dpnp
199195
id: install_dpnp
200196
continue-on-error: true
@@ -324,10 +320,6 @@ jobs:
324320
(echo CONDA_LIB_PATH=%CONDA_PREFIX%\Library\lib\) >> %GITHUB_ENV%
325321
(echo CONDA_LIB_BIN_PATH=%CONDA_PREFIX%\Library\bin\) >> %GITHUB_ENV%
326322
327-
- name: Install conda-index
328-
run: |
329-
mamba install conda-index=${{ env.CONDA_INDEX_VERSION }}
330-
331323
- name: Create conda channel
332324
run: |
333325
@echo on
@@ -351,10 +343,6 @@ jobs:
351343
echo PACKAGE_VERSION: %PACKAGE_VERSION%
352344
(echo PACKAGE_VERSION=%PACKAGE_VERSION%) >> %GITHUB_ENV%
353345
354-
# conda-index does not support python 3.13, but we need to test DPNP package with python 3.13
355-
- name: Remove conda-index
356-
run: mamba remove conda-index
357-
358346
- name: Install dpnp
359347
run: |
360348
@echo on

environments/build_conda_pkg.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ name: Build DPNP conda package
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.12 # conda-build does not support python 3.13
6-
- conda-build=25.4.2
5+
- python=3.13
6+
- conda-build=25.5.0

environments/create_conda_channel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ name: Create conda channel with DPNP package
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.12 # conda does not support python 3.13
6-
- conda-index=0.6.0
5+
- python=3.12 # DPNP does not support python 3.13
6+
- conda-index=0.6.1

0 commit comments

Comments
 (0)