Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.github/workflows/integration-test.yml: Update tested Python versions #649

Merged
merged 8 commits into from
Feb 20, 2023
Merged
12 changes: 6 additions & 6 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2

Expand All @@ -34,7 +34,7 @@ jobs:
- name: Prepare python environment
run: |
python -m pip install --upgrade pip
python -m pip install wheel cython networkx pytest-cov
python -m pip install networkx pytest-cov

- name: Install PySCIPOpt
run: python -m pip install .
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2

Expand All @@ -70,7 +70,7 @@ jobs:
shell: powershell
run: |
python -m pip install --upgrade pip
python -m pip install wheel cython networkx pytest-cov
python -m pip install networkx pytest-cov

- name: Install PySCIPOpt
shell: powershell
Expand All @@ -87,7 +87,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- name: Prepare python environment
run: |
python -m pip install --upgrade pip
python -m pip install wheel cython networkx pytest-cov pytest
python -m pip install networkx pytest-cov pytest

- name: Install PySCIPOpt
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[build-system]
requires = ['setuptools', 'cython <3, >=0.21']
build-backend = "setuptools.build_meta"