Skip to content

Commit e378d0c

Browse files
authored
Merge pull request #649 from mkoeppe/ci-update-integration-test
.github/workflows/integration-test.yml: Update tested Python versions
2 parents 1f17622 + 4730e43 commit e378d0c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/integration-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: true
1919
matrix:
20-
python-version: [3.6, 3.7, 3.8, 3.9]
20+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
2121
steps:
2222
- uses: actions/checkout@v2
2323

@@ -34,7 +34,7 @@ jobs:
3434
- name: Prepare python environment
3535
run: |
3636
python -m pip install --upgrade pip
37-
python -m pip install wheel cython networkx pytest-cov
37+
python -m pip install networkx pytest-cov
3838
3939
- name: Install PySCIPOpt
4040
run: python -m pip install .
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: windows-latest
5050
strategy:
5151
matrix:
52-
python-version: [3.8, 3.9]
52+
python-version: ["3.8", "3.9", "3.10", "3.11"]
5353
steps:
5454
- uses: actions/checkout@v2
5555

@@ -70,7 +70,7 @@ jobs:
7070
shell: powershell
7171
run: |
7272
python -m pip install --upgrade pip
73-
python -m pip install wheel cython networkx pytest-cov
73+
python -m pip install networkx pytest-cov
7474
7575
- name: Install PySCIPOpt
7676
shell: powershell
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: macos-latest
8888
strategy:
8989
matrix:
90-
python-version: [3.8, 3.9]
90+
python-version: ["3.8", "3.9", "3.10", "3.11"]
9191
steps:
9292
- uses: actions/checkout@v2
9393

@@ -127,7 +127,7 @@ jobs:
127127
- name: Prepare python environment
128128
run: |
129129
python -m pip install --upgrade pip
130-
python -m pip install wheel cython networkx pytest-cov pytest
130+
python -m pip install networkx pytest-cov pytest
131131
132132
- name: Install PySCIPOpt
133133
run: |

0 commit comments

Comments
 (0)