Skip to content

Commit

Permalink
See if individual installs makes a difference
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed May 21, 2024
1 parent 0e749d0 commit 9157671
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
PYENV: pip

- os: windows-latest
python: 3.9
python: 3.8
TARGET: win
PYENV: conda
PACKAGES: glpk pytest-qt filelock
Expand Down Expand Up @@ -354,7 +354,10 @@ jobs:
echo "*** Install Pyomo dependencies ***"
# Note: this will fail the build if any installation fails (or
# possibly if it outputs messages to stderr)
conda install --update-deps -q -y $CONDA_DEPENDENCIES
for DEP in $CONDA_DEPENDENCIES; do
conda install --update-deps -y $DEP
done
#conda install --update-deps -q -y $CONDA_DEPENDENCIES
if test -z "${{matrix.slim}}"; then
PYVER=$(echo "py${{matrix.python}}" | sed 's/\.//g')
echo "Installing for $PYVER"
Expand Down

0 comments on commit 9157671

Please sign in to comment.