Skip to content

Commit 45f60c0

Browse files
Remove upper limit on python version (#408)
* Remove upper limit on python version --------- Co-authored-by: Ted Ralphs <[email protected]>
1 parent 0ccb811 commit 45f60c0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/github-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9-v7.3.15"]
42+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9-v7.3.15"]
4343
os: [macos-11, macos-12, ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022]
4444
exclude:
4545
# temporarily exclude pypy3 on mac-os as there failing tests caused by bug on cbc side

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ https://python-mip.readthedocs.io/_/downloads/en/latest/pdf/
6161

6262
Questions, suggestions and feature request can be posted at [Discussions](https://github.com/coin-or/python-mip/discussions).
6363

64-
## Build status
64+
## Build status
6565

6666
[![CI](https://github.com/coin-or/python-mip/actions/workflows/github-ci.yml/badge.svg)](https://github.com/coin-or/python-mip/actions/workflows/github-ci.yml)
6767
[![Current version](https://badge.fury.io/gh/coin-or%2Fpython-mip.svg)](https://github.com/coin-or/python-mip/releases)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "mip"
77
description = "Python tools for Modeling and Solving Mixed-Integer Linear Programs (MIPs)"
88
readme = "README.md"
9-
requires-python = ">=3.7,<3.13"
9+
requires-python = ">=3.7"
1010
license = {file = "LICENSE"}
1111
authors = [
1212
{name="Tulio A.M. Toffolo", email="[email protected]"},

0 commit comments

Comments
 (0)