Skip to content

Commit fec4601

Browse files
committed
v0.2.7
1 parent 0e4f4e9 commit fec4601

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ include(FetchContent)
2323
FetchContent_Declare(
2424
qoco
2525
GIT_REPOSITORY https://github.com/qoco-org/qoco.git
26-
GIT_TAG 89706f60cd9eae4e73798b8f9913be4a0063e5fb
26+
GIT_TAG 0771532c6195e7669eada2e062d98d3065da9bd0
2727
)
2828

2929
list(POP_BACK CMAKE_MESSAGE_INDENT)

backend/cuda/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "qoco-cuda"
7-
version = "0.1.6"
7+
version = "0.1.7"
88
description = "QOCO: Quadratic Objective Conic Optimizer"
99
requires-python = ">=3.8"
1010
authors = [{ name = "Govind M. Chari", email = "govindchari1@gmail.com" }]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "qoco"
7-
version = "0.2.6"
7+
version = "0.2.7"
88
description = "QOCO: Quadratic Objective Conic Optimizer"
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/bindings.cpp.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ PYBIND11_MODULE(@QOCO_EXT_MODULE_NAME@, m)
339339
.def(py::init([]()
340340
{ return new QOCOSettings(); }))
341341
.def_readwrite("max_iters", &QOCOSettings::max_iters)
342-
.def_readwrite("bisect_iters", &QOCOSettings::bisect_iters)
343342
.def_readwrite("ruiz_iters", &QOCOSettings::ruiz_iters)
344343
.def_readwrite("iter_ref_iters", &QOCOSettings::iter_ref_iters)
345344
.def_readwrite("abstol", &QOCOSettings::abstol)

0 commit comments

Comments
 (0)