Skip to content

Commit

Permalink
Merge pull request FreeCAD#11768 from oursland/mamba-devenv-no-prune
Browse files Browse the repository at this point in the history
CI: Fix issues affecting conda devenv installation resulting in failures.
  • Loading branch information
chennes authored Jan 7, 2024
2 parents 108ea5d + b722790 commit 59fdebd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions conda/conda-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ channels:
- conda-forge
dependencies:
- conda-devenv
- mamba==1.4.9 # NOTE: Pin to highest version supported by the devenv
- python==3.11 # dependencies. If a higher version is installed, a crash
# occurs during the downgrade process.
- mamba==1.4.9 # NOTE: Pin to highest version supported by the devenv
- python==3.11.* # dependencies. If a higher version is installed, a crash
# occurs during the downgrade process.
2 changes: 1 addition & 1 deletion conda/setup-environment.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ call conda config --add envs_dirs %CD%/.conda
call conda config --set env_prompt "({name})"

:: install the FreeCAD dependencies into the environment
call mamba run --live-stream -n freecad mamba-devenv -f conda/environment.devenv.yml
call mamba run --live-stream -n freecad mamba-devenv --no-prune -f conda/environment.devenv.yml
2 changes: 1 addition & 1 deletion conda/setup-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ conda config --add envs_dirs $(pwd)/.conda
conda config --set env_prompt "({name})"

# install the FreeCAD dependencies into the environment
mamba run --live-stream -n freecad mamba-devenv -f conda/environment.devenv.yml
mamba run --live-stream -n freecad mamba-devenv --no-prune -f conda/environment.devenv.yml

0 comments on commit 59fdebd

Please sign in to comment.