-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scipy!=1.12.0 only in dev mode; CIBW_TEST_EXTRAS; bumped version to v0.6.7.post1
- Loading branch information
1 parent
adc78e6
commit 74932b5
Showing
8 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,38 @@ | ||
[build-system] | ||
build-backend = "setuptools.build_meta" | ||
requires = [ | ||
# Building with numpy 2.0 is compatible with numpy 1.x, but it | ||
# is only available on Python 3.9+ | ||
"numpy >= 2.0.0; python_version > '3.8'", | ||
"oldest-supported-numpy; python_version <= '3.8'", | ||
"scipy >= 0.13.2, !=1.12.0", | ||
|
||
"setuptools>=40.8.0", | ||
"setuptools_scm>=6.2", | ||
"wheel", | ||
"qdldl" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "osqp" | ||
dynamic = ["version", "dependencies"] | ||
description = "OSQP: The Operator Splitting QP Solver" | ||
readme = "README.rst" | ||
authors = [ | ||
{ name = "Bartolomeo Stellato", email = "[email protected]" }, | ||
{ name = "Goran Banjac" }, | ||
] | ||
classifiers = [ | ||
"License :: OSI Approved :: Apache Software License" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
# Unit tests fail on scipy 1.12.0 | ||
# see https://github.com/scipy/scipy/issues/20027 | ||
# We'll employ this extra when building wheels | ||
# using cibuildwheel by setting CIBW_TEST_EXTRAS | ||
"scipy!=1.12.0", | ||
] | ||
|
||
[tool.setuptools_scm] | ||
write_to = "src/osqp/_version.py" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
numpy >= 1.7 | ||
scipy >= 0.13.2, !=1.12.0 | ||
scipy >= 0.13.2 | ||
qdldl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,7 +74,7 @@ def finalize_options(self): | |
|
||
|
||
setup(name='PYTHON_EXT_NAME', | ||
version='0.6.7.post0', | ||
version='0.6.7.post1', | ||
author='Bartolomeo Stellato, Goran Banjac', | ||
author_email='[email protected]', | ||
description='This is the Python module for embedded OSQP: ' + | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters