Skip to content

Commit

Permalink
Update python and gurobipy CI versions (#65)
Browse files Browse the repository at this point in the history
- Update pyproject.toml to tag 3.12 as compatible
- Test the wheels against python 3.12 in CI
- Test against Gurobi v11 beta packages in CI
  • Loading branch information
simonbowly authored Nov 2, 2023
1 parent a180635 commit 5455123
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/notebook-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
os: [ubuntu-latest]
python: ["3.8"]
gurobipy: ["9.5.2", "10.0.3"]
gurobipy: ["10.0.3"]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
gurobipy: ["10.0.3", "11.0.0b1"]

steps:
- name: Checkout unit tests
Expand All @@ -46,6 +47,9 @@ jobs:
path: dist
- name: File listing
run: ls -R
- name: Install gurobipy
run: |
python -m pip install gurobipy==${{ matrix.gurobipy }}
- name: Install wheel
run: |
# Workaround for globbing the wheel on windows
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
]
Expand Down

0 comments on commit 5455123

Please sign in to comment.