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

Enable Python 3.13 and make tests more resilient to lacking cplex/gurobi wheels #276

Merged
merged 10 commits into from
Jan 7, 2025
Prev Previous commit
Next Next commit
update swiglpk
  • Loading branch information
cdiener committed Jan 7, 2025
commit 97fcbc6cf81dac4602e2602c7f49cfa5ce14aa40
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ classifiers =
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering :: Mathematics
license = Apache-2.0
description = Formulate optimization problems using sympy expressions and solve them using interfaces to third-party optimization software (e.g. GLPK).
Expand All @@ -33,9 +34,9 @@ keywords =
[options]
zip_safe = True
install_requires =
swiglpk >=5.0.8
swiglpk >=5.0.12
sympy >=1.12.0
python_requires = >=3.8
python_requires = >=3.9
tests_require =
tox
packages = find:
Expand Down