From 470a3983b7af4d18194111c9fde6bf6a56cae332 Mon Sep 17 00:00:00 2001 From: John Turner <7strbass@gmail.com> Date: Tue, 17 Dec 2024 09:10:17 -0500 Subject: [PATCH] --due to quaternion library dtypes, numpy must be version 1.26.4 --- .github/actions/install_ubuntu_deps/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install_ubuntu_deps/action.yml b/.github/actions/install_ubuntu_deps/action.yml index 089f43236e..f9e5271cf7 100644 --- a/.github/actions/install_ubuntu_deps/action.yml +++ b/.github/actions/install_ubuntu_deps/action.yml @@ -50,7 +50,7 @@ runs: run: |- echo "Install conda and dependencies" conda install -y pytorch==1.12.1 torchvision==0.13.1 -c pytorch -c nvidia - conda install -y -c conda-forge ninja numpy pytest pytest-cov ccache hypothesis pytest-mock + conda install -y -c conda-forge ninja numpy=1.26.4 pytest pytest-cov ccache hypothesis pytest-mock pip install pytest-sugar pytest-xdist pytest-benchmark opencv-python cython mock shell: bash -el {0} - name: Validate Pytorch Installation