Skip to content

Disable GitHub workflows to be run with python 3.13 #2322

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
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/check-mkl-interfaces.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
onedpl-devel
setuptools
python
numpy">=2.0"
numpy
cython
cmake
ninja
Expand All @@ -32,7 +32,9 @@ jobs:

strategy:
matrix:
python: ['3.13']
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
python: ['3.12']
os: [ubuntu-22.04] # windows-2019 - no DFT support for Windows in oneMKL

permissions:
Expand Down Expand Up @@ -125,7 +127,9 @@ jobs:

strategy:
matrix:
python: ['3.13']
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
python: ['3.12']
os: [ubuntu-22.04] # windows-2019 - no DFT support for Windows in oneMKL

permissions:
Expand Down
17 changes: 12 additions & 5 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ env:
CONDA_BUILD_INDEX_ENV_PY_VER: '3.12' # conda does not support python 3.13
CONDA_BUILD_VERSION: '25.1.1'
CONDA_INDEX_VERSION: '0.5.0'
LATEST_PYTHON: '3.13'
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
LATEST_PYTHON: '3.12'
RERUN_TESTS_ON_FAILURE: 'true'
RUN_TESTS_MAX_ATTEMPTS: 2
TEST_ENV_NAME: 'test'
Expand All @@ -31,7 +33,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
python: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-22.04, windows-2019]

permissions:
Expand Down Expand Up @@ -124,7 +128,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
# python 3.13 is blocked due to MKL issue
python: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest]

env:
Expand Down Expand Up @@ -253,7 +258,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
# python 3.13 is blocked due to MKL issue
python: ['3.9', '3.10', '3.11', '3.12']
os: [windows-2019]

env:
Expand Down Expand Up @@ -389,7 +395,8 @@ jobs:

strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
# python 3.13 is blocked due to MKL issue
python: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-22.04, windows-2019]

runs-on: ${{ matrix.os }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cron-run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
python: ['3.9', '3.10', '3.11', '3.12']
runner: [ubuntu-22.04, ubuntu-24.04, windows-2019]

steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ def test_copyto_multigpu_noncontinguous(self, dtype):
testing.assert_array_equal(expected, dst.get())


@testing.with_requires("numpy>=2.1")
@testing.parameterize(
*testing.product(
{
Expand Down
Loading