From c50446cf5f43ee03e2a1588a6a3e63e64bee1f8c Mon Sep 17 00:00:00 2001 From: Vahid Tavanashad Date: Fri, 8 Nov 2024 07:25:53 -0800 Subject: [PATCH] bump numpy and cupy version in build doc --- .github/workflows/build-sphinx.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-sphinx.yml b/.github/workflows/build-sphinx.yml index 9450572c274b..f36112657078 100644 --- a/.github/workflows/build-sphinx.yml +++ b/.github/workflows/build-sphinx.yml @@ -36,7 +36,7 @@ jobs: pull-requests: write env: - python-ver: '3.9' + python-ver: '3.12' CHANNELS: '-c dppy/label/dev -c intel -c conda-forge --override-channels' NO_INTEL_CHANNELS: '-c dppy/label/dev -c conda-forge --override-channels' # Install the latest oneAPI compiler to work around an issue @@ -132,16 +132,16 @@ jobs: - name: Install dpnp dependencies if: env.INSTALL_ONE_API == 'yes' run: | - mamba install numpy"<1.24" dpctl">=0.18.0dev0" cmake cython pytest ninja scikit-build ${{ env.NO_INTEL_CHANNELS }} + mamba install numpy dpctl">=0.18.0dev0" cmake cython pytest ninja scikit-build ${{ env.NO_INTEL_CHANNELS }} - name: Install dpnp dependencies if: env.INSTALL_ONE_API != 'yes' run: | - mamba install numpy"<1.24" dpctl">=0.18.0dev0" mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64 \ + mamba install numpy dpctl">=0.18.0dev0" mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64 \ cmake cython pytest ninja scikit-build ${{ env.CHANNELS }} - name: Install cuPy dependencies - run: mamba install cupy cudatoolkit=10.0 + run: mamba install cupy - name: Conda info run: mamba info