From f662df8b5bc4bc5920f481a436e6653da6e41e38 Mon Sep 17 00:00:00 2001 From: Alexey Pechnikov Date: Thu, 25 Jan 2024 23:48:51 +0700 Subject: [PATCH] Try workaround to weird GitHub Actions issue raised today when 'distributed' library is not installed as needed --- .github/workflows/macos.yml | 2 +- .github/workflows/ubuntu.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index e307db01..a5e649ac 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -48,7 +48,7 @@ jobs: gmtsar_sharedir.csh - name: Install PyGMTSAR run: | - pip3 install pyvista panel + pip3 install pyvista panel distributed pip3 install -e ./pygmtsar/ - name: Run test working-directory: tests diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index c6ad6520..ad96c2e1 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -62,7 +62,7 @@ jobs: - name: Install PyGMTSAR run: | # vtk rendering - pip3 install pyvista panel + pip3 install pyvista panel distributed pip3 install -e ./pygmtsar/ - name: Run test working-directory: tests