Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing conda selectors syntax #1471

Closed
wants to merge 14 commits into from
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
14 changes: 8 additions & 6 deletions .github/actions/install-parcels/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ runs:
uses: al-cheb/configure-pagefile-action@v1.3
with:
minimum-size: 8GB
- name: Install micromamba (${{ inputs.environment-file }})
uses: mamba-org/setup-micromamba@v1
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
activate-environment: ${{ inputs.environment-name }}
environment-file: ${{ inputs.environment-file }}
environment-name: ${{ inputs.environment-name }}
channels: conda-forge
cache-environment: true
cache-downloads: true
auto-activate-base: false
auto-update-conda: true
- run: conda info
shell: bash -el {0}
- name: Install parcels
run: pip install .
shell: bash -el {0}
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ dependencies:
- git
- jupyter
- matplotlib-base>=2.0.2
- sel(unix): mpi4py
- sel(unix): mpich
- mpi4py # [unix]
- mpich # [unix]
- netcdf4>=1.1.9
- numpy>=1.9.1
- platformdirs
Expand Down
Loading