From 296e4923cdacd8878399a93c4b27106ab706ac57 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Mon, 6 Jun 2022 11:09:16 -0700 Subject: [PATCH] DEPS/CI: Fix sdist job post numpy 18 drop --- .github/workflows/sdist.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sdist.yml b/.github/workflows/sdist.yml index 21d252f4cef67..e4bb556359177 100644 --- a/.github/workflows/sdist.yml +++ b/.github/workflows/sdist.yml @@ -74,9 +74,9 @@ jobs: run: | case "${{matrix.python-version}}" in 3.8) - pip install numpy==1.18.5 ;; + pip install numpy==1.19.5 ;; 3.9) - pip install numpy==1.19.3 ;; + pip install numpy==1.19.5 ;; 3.10) pip install numpy==1.21.2 ;; esac