From dffb17b44fdaacc0909dae4d73aec0281905a94d Mon Sep 17 00:00:00 2001 From: jameswilburlewis Date: Wed, 16 Oct 2024 15:37:36 -0700 Subject: [PATCH] Adding quotes to pip install, apparently unquoted '<=' is a problem? --- .github/workflows/pythonpackage.yml | 6 +++--- .github/workflows/quick_tests.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index bbf5c389..fd53eac6 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -32,7 +32,7 @@ jobs: pip install spacepy # required for MMS qcotrans tests pip install coveralls pip install basemap - pip install mth5<=0.4.7 + pip install 'mth5<=0.4.7' python -m pyspedas.projects.mms.tests.setup_tests if: matrix.os == 'ubuntu-latest' - name: Install dependencies (Windows) @@ -46,7 +46,7 @@ jobs: pip install spacepy # required for MMS qcotrans tests pip install coveralls pip install basemap - pip install mth5<=0.4.7 + pip install 'mth5<=0.4.7' python -m pyspedas.projects.mms.tests.setup_tests if: matrix.os == 'windows-latest' - name: Install dependencies (macOS) @@ -60,7 +60,7 @@ jobs: pip install spacepy # required for MMS qcotrans tests pip install coveralls pip install basemap - pip install mth5<=0.4.7 + pip install 'mth5<=0.4.7' python -m pyspedas.projects.mms.tests.setup_tests if: matrix.os == 'macos-latest' - name: Lint with flake8 diff --git a/.github/workflows/quick_tests.yml b/.github/workflows/quick_tests.yml index 99373ae5..a0d18915 100644 --- a/.github/workflows/quick_tests.yml +++ b/.github/workflows/quick_tests.yml @@ -27,7 +27,7 @@ jobs: pip install -r requirements.txt pip install spacepy # required for MMS qcotrans tests pip install coveralls - pip install mth5<=0.4.7 + pip install 'mth5<=0.4.7' if: matrix.os == 'ubuntu-latest' - name: Install dependencies (Windows) run: | @@ -35,7 +35,7 @@ jobs: pip install -r requirements.txt pip install spacepy # required for MMS qcotrans tests pip install coveralls - pip install mth5<=0.4.7 + pip install 'mth5<=0.4.7' if: matrix.os == 'windows-latest' - name: Install dependencies (macOS) run: | @@ -43,7 +43,7 @@ jobs: pip install -r requirements.txt pip install spacepy # required for MMS qcotrans tests pip install coveralls - pip install mth5<=0.4.7 + pip install 'mth5<=0.4.7' if: matrix.os == 'macos-latest' - name: Lint with flake8 run: |