Skip to content

Commit

Permalink
[c++/python] Fix new pybind11 capsule build error (#1533)
Browse files Browse the repository at this point in the history
* [c++/python] Fix new pybind11 capsule build error

* Version pins per @ihnorton

* Only use pybind11 2.10.0; no source-code workaround

* code-review feedback
  • Loading branch information
johnkerl authored Jul 17, 2023
1 parent 106aff3 commit 7f4dd7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/python/src/tiledbsoma/query_condition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class PyQueryCondition {

shared_ptr<QueryCondition> ptr() { return qc_; }

py::capsule __capsule__() { return py::capsule(&qc_, "qc", nullptr); }
py::capsule __capsule__() { return py::capsule(&qc_, "qc"); }

PyQueryCondition
combine(PyQueryCondition rhs,
Expand Down

0 comments on commit 7f4dd7b

Please sign in to comment.