Skip to content

Commit

Permalink
Install setuptools first; correct skip statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Oct 11, 2023
1 parent a1cc04a commit deb8bc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release_wheel_creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
with:
output-dir: dist
env:
CIBW_SKIP: "pp* cp36* cp37* *-musllinux-*"
CIBW_PLATFORM: auto
CIBW_SKIP: "pp* cp36* cp37* *-musllinux*"
CIBW_BUILD_VERBOSITY: 1
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BEFORE_BUILD: pip install cython pybind11
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ jobs:
run: |
python -c 'import sys;print(sys.executable)'
python -m pip install --cache-dir cache/pip --upgrade pip
python -m pip install --cache-dir cache/pip setuptools
PYOMO_DEPENDENCIES=`python setup.py dependencies \
--extras "$EXTRAS" | tail -1`
PACKAGES="${PYTHON_CORE_PKGS} ${PYTHON_PACKAGES} ${PYOMO_DEPENDENCIES} "
Expand Down

0 comments on commit deb8bc9

Please sign in to comment.