From 352c1be8111995650eabad7de5891ca211b8cbe1 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 2 Jun 2025 15:23:55 -0700 Subject: [PATCH 1/3] Bump conda-build to 25.5.0 version --- environments/build_conda_pkg.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/build_conda_pkg.yml b/environments/build_conda_pkg.yml index c84d70b78c76..658009157a03 100644 --- a/environments/build_conda_pkg.yml +++ b/environments/build_conda_pkg.yml @@ -3,4 +3,4 @@ channels: - conda-forge dependencies: - python=3.12 # conda-build does not support python 3.13 - - conda-build=25.4.2 + - conda-build=25.5.0 From 361701580ceebb30f7bf97cd6d2c28500fa3b396 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 2 Jun 2025 15:27:28 -0700 Subject: [PATCH 2/3] Bump conda-index to 0.6.1 version --- environments/create_conda_channel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/create_conda_channel.yml b/environments/create_conda_channel.yml index b808b7ca49ed..6df5b3c9f6d1 100644 --- a/environments/create_conda_channel.yml +++ b/environments/create_conda_channel.yml @@ -3,4 +3,4 @@ channels: - conda-forge dependencies: - python=3.12 # conda does not support python 3.13 - - conda-index=0.6.0 + - conda-index=0.6.1 From 6bd748b74aaad47921ff6ff387c511c03b56c3cc Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 2 Jun 2025 15:32:09 -0700 Subject: [PATCH 3/3] Conda is supporting python 3.13 now, so need to remove all connected limitations in public CI --- .github/workflows/conda-package.yml | 12 ------------ environments/build_conda_pkg.yml | 2 +- environments/create_conda_channel.yml | 2 +- 3 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 958e7795973a..b666c16902d5 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -191,10 +191,6 @@ jobs: echo PACKAGE_VERSION=${PACKAGE_VERSION} echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV - # conda-index does not support python 3.13, but we need to test DPNP package with python 3.13 - - name: Remove conda-index - run: mamba remove conda-index - - name: Install dpnp id: install_dpnp continue-on-error: true @@ -324,10 +320,6 @@ jobs: (echo CONDA_LIB_PATH=%CONDA_PREFIX%\Library\lib\) >> %GITHUB_ENV% (echo CONDA_LIB_BIN_PATH=%CONDA_PREFIX%\Library\bin\) >> %GITHUB_ENV% - - name: Install conda-index - run: | - mamba install conda-index=${{ env.CONDA_INDEX_VERSION }} - - name: Create conda channel run: | @echo on @@ -351,10 +343,6 @@ jobs: echo PACKAGE_VERSION: %PACKAGE_VERSION% (echo PACKAGE_VERSION=%PACKAGE_VERSION%) >> %GITHUB_ENV% - # conda-index does not support python 3.13, but we need to test DPNP package with python 3.13 - - name: Remove conda-index - run: mamba remove conda-index - - name: Install dpnp run: | @echo on diff --git a/environments/build_conda_pkg.yml b/environments/build_conda_pkg.yml index 658009157a03..2edf5c9db4f6 100644 --- a/environments/build_conda_pkg.yml +++ b/environments/build_conda_pkg.yml @@ -2,5 +2,5 @@ name: Build DPNP conda package channels: - conda-forge dependencies: - - python=3.12 # conda-build does not support python 3.13 + - python=3.13 - conda-build=25.5.0 diff --git a/environments/create_conda_channel.yml b/environments/create_conda_channel.yml index 6df5b3c9f6d1..98e40b3cd146 100644 --- a/environments/create_conda_channel.yml +++ b/environments/create_conda_channel.yml @@ -2,5 +2,5 @@ name: Create conda channel with DPNP package channels: - conda-forge dependencies: - - python=3.12 # conda does not support python 3.13 + - python=3.12 # DPNP does not support python 3.13 - conda-index=0.6.1