Skip to content

Commit

Permalink
Adding quotes to pip install, apparently unquoted '<=' is a problem?
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswilburlewis committed Oct 16, 2024
1 parent 3aa460b commit dffb17b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/quick_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@ 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: |
python -m pip install --upgrade pip
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: |
python -m pip install --upgrade pip
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: |
Expand Down

0 comments on commit dffb17b

Please sign in to comment.