8000 Bump conda versions by antonwolfy · Pull Request #2466 · IntelPython/dpnp · GitHub
[go: up one dir, main page]

Skip to content

Bump conda versions #2466

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Conda is supporting python 3.13 now, so need to remove all connected …
…limitations in public CI
  • Loading branch information
antonwolfy committed Jun 2, 2025
commit 6bd748b74aaad47921ff6ff387c511c03b56c3cc
12 changes: 0 additions & 12 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion environments/build_conda_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion environments/create_conda_channel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading
0