Skip to content

Commit

Permalink
Pin setuptools to <74 for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt authored Sep 30, 2024
1 parent 7c6b32c commit a39a3ee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test_pr_and_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,10 @@ jobs:
done
echo ""
echo "*** Install Pyomo dependencies ***"
# For windows, cannot use newer setuptools because of APPSI compilation issues
if test "${{matrix.TARGET}}" == 'win'; then
CONDA_DEPENDENCIES = "$CONDA_DEPENDENCIES setuptools<74.0.0"
fi
# 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
Expand Down

0 comments on commit a39a3ee

Please sign in to comment.