Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOGS.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Logs
===========

0.4.1
+++++

* :pr:`42`: excludes failing functions from pybind11 in docassert

0.4.0
+++++

Expand Down
3 changes: 1 addition & 2 deletions _doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ Sources available on
Older versions
++++++++++++++

* `0.4.1 <../v0.4.1/index.html>`_
* `0.4.0 <../v0.4.0/index.html>`_
* `0.3.0 <../v0.3.0/index.html>`_
* `0.2.0 <../v0.2.0/index.html>`_
* `0.1.0 <../v0.1.0/index.html>`_
2 changes: 1 addition & 1 deletion sphinx_runpython/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.0"
__version__ = "0.4.1"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/sphinx-runpython"
__url__ = "https://sdpython.github.io/doc/sphinx-runpython/dev/"
Expand Down
5 changes: 5 additions & 0 deletions sphinx_runpython/docassert/sphinx_docassert_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,11 @@ def override_transform(self, other_self, node):
# Import object, get the list of parameters
docs = fieldbody.parent.source.split("docstring of")[-1].strip()
docs = docs.replace(".PyCapsule.", ".")
if (
"pybind11_detail_function_record_v1_system_libstdcpp_gxx_abi_1xxx_use_cxx11_abi_1"
in docs
):
continue

myfunc = None
funckind = None
Expand Down
Loading