highspy python package has a dependancy issue with numpy (#676) #486
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 21 | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10'] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install glpk | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -qq glpk-utils | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
# - name: Install highspy | |
# if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest' | |
# run: | | |
# pip install highspy | |
- name: Test with pulptest | |
run: pulptest | |
- name: Code Quality | |
run: | | |
pip install black | |
black pulp/ --check |