From ffca8f7fbfede687bee27ab0907328fe21dbd9ff Mon Sep 17 00:00:00 2001 From: Mike Jarvis Date: Thu, 27 Jun 2024 01:41:58 -0400 Subject: [PATCH] Use || --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce8d883262..54c77220d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -164,7 +164,7 @@ jobs: # astroplan isn't yet numpy 2.0 compatible. So don't install that on 3.9+. # I'm also getting errors with starlink, which I think may be related to # numpy 2.0. - if: matrix.py == 3.8 or matrix.py == 3.9 + if: (matrix.py == 3.8) || (matrix.py == 3.9) run: | pip install -U astroplan pip install -U starlink-pyast