Skip to content

Commit

Permalink
Merge pull request #19 from Kuonirad/devin/fix-conda-solver
Browse files Browse the repository at this point in the history
ci: Enhance conda solver verification.
  • Loading branch information
Kuonirad authored Dec 23, 2024
2 parents 665ae79 + c99b9bb commit b213e46
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,25 @@ jobs:
exit 1
fi
- name: Configure Conda
- name: Configure and Verify Conda
shell: bash -l {0}
run: |
# Remove conda-libmamba-solver if present
conda remove -n base conda-libmamba-solver -y || true
# Set solver to classic
conda config --system --set solver classic
# Verify configuration
echo "=== Conda Solver Configuration ==="
conda config --show solver
echo "=== Verify conda-libmamba-solver is removed ==="
conda list conda-libmamba-solver
echo "=== Conda Environment Info ==="
conda info
conda config --show channels
conda config --set solver classic
conda list
- name: Install Python Dependencies
shell: bash -l {0}
Expand Down

0 comments on commit b213e46

Please sign in to comment.