Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
Fix CI issue due to conflict
  • Loading branch information
tuliotoffolo committed Jan 19, 2024
1 parent 51d60bc commit 2aaff9f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ build-backend = "setuptools.build_meta"
name = "mip"
description = "Python tools for Modeling and Solving Mixed-Integer Linear Programs (MIPs)"
readme = "README.md"
requires-python = ">=3.8,<3.13"
requires-python = ">=3.7,<3.13"
license = {file = "LICENSE"}
authors = [
{name="T.A.M. Toffolo", email="haroldo.santos@gmail.com"},
{name="H.G. Santos", email="tulio@toffolo.com.br"}
{name="Tulio A.M. Toffolo", email="tulio@toffolo.com.br"},
{name="Haroldo G. Santos", email="haroldo.santos@gmail.com"}
]
maintainers = [
{name="S. Heger", email="heger@m2p.net"}
Expand All @@ -35,9 +35,9 @@ dynamic = ["version"]
dependencies = ["cffi==1.15.*"]

[project.optional-dependencies]
numpy = ["numpy==1.24.*; python_version >= '3.8'", "numpy==1.21.6; python_version == '3.8'"]
numpy = ["numpy==1.24.*; python_version >= '3.8'", "numpy==1.21.6; python_version == '3.7'"]
gurobi = ["gurobipy>=8"]
test = ["pytest==7.2.0", "networkx==2.8.8; python_version >= '3.8'", "networkx==2.6.3; python_version == '3.8'", "matplotlib==3.6.2; python_version >= '3.8'", "matplotlib==3.5.3; python_version == '3.8'"]
test = ["pytest==7.2.0", "networkx==2.8.8; python_version >= '3.8'", "networkx==2.6.3; python_version == '3.7'", "matplotlib==3.6.2; python_version >= '3.8'", "matplotlib==3.5.3; python_version == '3.7'"]

[project.urls]
"Homepage" = "https://www.python-mip.com"
Expand Down

0 comments on commit 2aaff9f

Please sign in to comment.