Skip to content

Commit

Permalink
Force python3.11 to be in the base environment
Browse files Browse the repository at this point in the history
It seems python3.12 is in the base environment, which is causing some
issues installing libmamba.

Signed-off-by: Patrick Avery <[email protected]>
  • Loading branch information
psavery committed Mar 6, 2024
1 parent ec4ef7b commit 47f683b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:

- name: Install build requirements
run: |
# The base environment needs to use python3.11...
conda install -n base -c conda-forge python=3.11
# Change default solver to be libmamba, so that it runs much faster
conda install -n base -c conda-forge conda-libmamba-solver
conda config --set solver libmamba
Expand Down

0 comments on commit 47f683b

Please sign in to comment.