[ci skip] Change/add notes: THIS BRANCH IS OBSOLETE.

This commit is contained in:
Ralf W. Grosse-Kunstleve
2025-03-05 13:58:53 -08:00
parent aed215c4d4
commit 68a11bb65b
2 changed files with 33 additions and 3 deletions

View File

@@ -13,10 +13,25 @@
.. start
.. Note::
NOTE
----
This is the pybind11 **smart_holder** branch. Please refer to
``README_smart_holder.rst`` for branch-specific information.
**THIS BRANCH IS OBSOLETE.** — It was merged into the pybind11 master branch
with `PR #5542 <https://github.com/pybind/pybind11/pull/5542>`_.
Please switch to pybind11 master or future pybind11 releases.
You will need to remove ``#include <pybind11/smart_holder.h>``
from your code, and these obsolete macros:
* ``PYBIND11_TYPE_CASTER_BASE_HOLDER``
* ``PYBIND11_SMART_HOLDER_TYPE_CASTERS``
* ``PYBIND11_SH_AVL``
* ``PYBIND11_SH_DEF``
Overview
--------
**pybind11** is a lightweight header-only library that exposes C++ types
in Python and vice versa, mainly to create Python bindings of existing

View File

@@ -2,6 +2,21 @@
pybind11 — smart_holder branch
==============================
NOTE
====
**THIS BRANCH IS OBSOLETE.** — It was merged into the pybind11 master branch
with `PR #5542 <https://github.com/pybind/pybind11/pull/5542>`_.
Please switch to pybind11 master or future pybind11 releases.
You will need to remove ``#include <pybind11/smart_holder.h>``
from your code, and these obsolete macros:
* ``PYBIND11_TYPE_CASTER_BASE_HOLDER``
* ``PYBIND11_SMART_HOLDER_TYPE_CASTERS``
* ``PYBIND11_SH_AVL``
* ``PYBIND11_SH_DEF``
Overview
========