Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/run-tests-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
run: python -V
- shell: bash -l {0}
run: pip install -e .[develop]
- shell: bash -l {0}
run: conda list
- shell: bash -l {0}
run: |
analysis_compare --help
Expand All @@ -38,6 +40,6 @@ jobs:
bgcval2_make_report --help
download_from_mass --help
- shell: bash -l {0}
run: pytest
run: pytest -n 2
- shell: bash -l {0}
run: sphinx-build -Ea doc doc/build
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
run: python -V
- shell: bash -l {0}
run: pip install -e .[develop]
- shell: bash -l {0}
run: conda list
- shell: bash -l {0}
run: |
analysis_compare --help
Expand All @@ -44,6 +46,6 @@ jobs:
bgcval2_make_report --help
download_from_mass --help
- shell: bash -l {0}
run: pytest
run: pytest -n 2
- shell: bash -l {0}
run: sphinx-build -Ea doc doc/build
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- matplotlib
- nctoolkit >=0.8.7 # use linux64 build
- netcdf4
- numpy >1.24.3,<2.0 # needs thorough checking when released
- numpy >=2.0.0
- pip !=21.3
- python >=3.9
- pyyaml
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'matplotlib',
'nctoolkit>=0.8.7', # use linux64 build
'netcdf4',
'numpy>1.24.3,<2.0',
'numpy>=2.0.0',
'pip!=21.3',
'pyyaml',
'scikit-learn',
Expand Down
Loading