Skip to content

Commit 8aa1682

Browse files
committed
Remove more references to PyPy 5.7 and 5.9 in the docs
1 parent 387f367 commit 8aa1682

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/advanced/misc.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ avoids this issue involves weak reference with a cleanup callback:
223223

224224
.. code-block:: cpp
225225
226-
// Register a callback function that is invoked when the BaseClass object is colelcted
226+
// Register a callback function that is invoked when the BaseClass object is collected
227227
py::cpp_function cleanup_callback(
228228
[](py::handle weakref) {
229229
// perform cleanup here -- this function is called with the GIL held
@@ -237,9 +237,9 @@ avoids this issue involves weak reference with a cleanup callback:
237237
238238
.. note::
239239

240-
PyPy (at least version 5.9) does not garbage collect objects when the
241-
interpreter exits. An alternative approach (which also works on CPython) is to use
242-
the :py:mod:`atexit` module [#f7]_, for example:
240+
PyPy does not garbage collect objects when the interpreter exits. An alternative
241+
approach (which also works on CPython) is to use the :py:mod:`atexit` module [#f7]_,
242+
for example:
243243

244244
.. code-block:: cpp
245245

docs/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ become an excessively large and unnecessary dependency.
2020
Think of this library as a tiny self-contained version of Boost.Python with
2121
everything stripped away that isn't relevant for binding generation. Without
2222
comments, the core header files only require ~4K lines of code and depend on
23-
Python (2.7 or 3.x, or PyPy2.7 >= 5.7) and the C++ standard library. This
23+
Python (2.7 or 3.x, or PyPy2.7 >= 7.3) and the C++ standard library. This
2424
compact implementation was possible thanks to some of the new C++11 language
2525
features (specifically: tuples, lambda functions and variadic templates). Since
2626
its creation, this library has grown beyond Boost.Python in many ways, leading
@@ -49,7 +49,7 @@ Goodies
4949
*******
5050
In addition to the core functionality, pybind11 provides some extra goodies:
5151

52-
- Python 2.7, 3.x, and PyPy (PyPy2.7 >= 5.7) are supported with an
52+
- Python 2.7, 3.x, and PyPy (PyPy2.7 >= 7.3) are supported with an
5353
implementation-agnostic interface.
5454

5555
- It is possible to bind C++11 lambda functions with captured variables. The

0 commit comments

Comments
 (0)