Skip to content

Commit 7233072

Browse files
authored
feat: remove Python 3.7 support (#5191)
* First pass updating misc files, informed by https://github.com/pybind/pybind11/pull/5177/commits * Remove jobs using silkeh/clang and gcc docker containers that come with Python 3.7 * Add silkeh/clang:17-bookworm * Add job using GCC 7 * Revert "Add job using GCC 7" This reverts commit 518515a. * Try running in ubuntu-18.04 container under ubuntu-latest (to get GCC 7) * Fix `-` vs `:` mixup. * This reverts commit b1c4304. Revert "Try running in ubuntu:18.04 container under ubuntu-latest (to get GCC 7)" This reverts commit b203a29. * `git grep 0x03080000` cleanup. * `git grep -I -E '3\.7'` cleanup. Removes two changes made under #3702 * Revert "`git grep -I -E '3\.7'` cleanup." This reverts commit bb5b9d1. * Remove comments that are evidently incorrect: ``` ... -- The CXX compiler identification is Clang 15.0.7 ... - Found Python: /usr/bin/python3.9 (found suitable version "3.9.2", minimum required is "3.7") found components: Interpreter Development.Module Development.Embed ... /__w/pybind11/pybind11/include/pybind11/gil.h:150:13: error: 'auto key' can be declared as 'auto *key' [readability-qualified-auto,-warnings-as-errors] auto key = internals.tstate; ^~~~~ auto * /__w/pybind11/pybind11/include/pybind11/gil.h:174:13: error: 'auto key' can be declared as 'auto *key' [readability-qualified-auto,-warnings-as-errors] auto key = detail::get_internals().tstate; ^~~~~ auto * ``` * .github/workflows/configure.yml: Change from Python 3.7 to 3.8 * Misc cleanup pass * Miscellaneous changes based on manual review of the `git grep` matches below: ``` git_grep_37_38.sh |& sort | uniq -c ``` With git_grep_37_38.sh: ``` set -x git grep 0x0307 git grep 0x0308 git grep PY_MINOR_VERSION git grep PYPY_VERSION git grep -I -E '3\.7' git grep -I -E '3\.8' git grep -I -E '\(3, 7' git grep -I -E '\(3, 8' git grep -I -E '3[^A-Za-z0-9.]+7' git grep -I -E '3[^A-Za-z0-9.]+8' ``` Output: ``` 1 .appveyor.yml: $env:CMAKE_INCLUDE_PATH = "eigen-3.3.7;$env:CMAKE_INCLUDE_PATH" 1 .appveyor.yml: 7z x eigen-3.3.7.zip -y > $null 1 .appveyor.yml: Start-FileDownload 'https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.zip' 1 CMakeLists.txt: # Bug in macOS CMake < 3.7 is unable to download catch 1 CMakeLists.txt: elseif(WINDOWS AND CMAKE_VERSION VERSION_LESS 3.8) 1 CMakeLists.txt: if(OSX AND CMAKE_VERSION VERSION_LESS 3.7) 1 CMakeLists.txt: message(WARNING "CMAKE 3.7+ needed on macOS to download catch, and newer HIGHLY recommended") 1 CMakeLists.txt: message(WARNING "CMAKE 3.8+ tested on Windows, previous versions untested") 1 CMakeLists.txt: # Only tested with 3.8+ in CI. 1 docs/advanced/functions.rst:Python 3.8 introduced a new positional-only argument syntax, using ``/`` in the 1 docs/changelog.rst:* Adapt pybind11 to a C API convention change in Python 3.8. `#1950 1 docs/changelog.rst:* Allow thread termination to be avoided during shutdown for CPython 3.7+ via 1 docs/changelog.rst: considered as conversion, consistent with Python 3.8+. 1 docs/changelog.rst: CPython 3.8 and 3.9 debug builds. 1 docs/changelog.rst:* Enum now has an ``__index__`` method on Python <3.8 too. 1 docs/changelog.rst: on Python 3.8. `#1780 <https://github.com/pybind/pybind11/pull/1780>`_. 1 docs/changelog.rst:* PyPy 3.10 support was added, PyPy 3.7 support was dropped. 2 docs/changelog.rst:* Support PyPy 7.3.7 and the PyPy3.8 beta. Test python-3.11 on PRs with the 1 docs/changelog.rst:* Use ``macos-13`` (Intel) for CI jobs for now (will drop Python 3.7 soon). 1 docs/changelog.rst:* Use new Python 3.7 Thread Specific Storage (TSS) implementation if available. 1 docs/compiling.rst: cmake -DPYBIND11_PYTHON_VERSION=3.8 .. 1 docs/compiling.rst: find_package(Python 3.8 COMPONENTS Interpreter Development REQUIRED) 1 docs/limitations.rst:- PyPy3 7.3.1 and 7.3.2 have issues with several tests on 32-bit Windows. 1 docs/requirements.txt:idna==3.7 \ 1 + git grep 0x0307 1 + git grep 0x0308 1 + git grep -I -E '\(3, 7' 1 + git grep -I -E '3\.7' 1 + git grep -I -E '\(3, 8' 1 + git grep -I -E '3\.8' 1 + git grep -I -E '3[^A-Za-z0-9.]+7' 1 + git grep -I -E '3[^A-Za-z0-9.]+8' 1 + git grep PY_MINOR_VERSION 1 + git grep PYPY_VERSION 2 .github/workflows/ci.yml: - '3.8' 1 .github/workflows/ci.yml: - 3.8 1 .github/workflows/ci.yml: - name: Add Python 3.8 1 .github/workflows/ci.yml: - 'pypy-3.8' 2 .github/workflows/ci.yml: python: '3.8' 1 .github/workflows/ci.yml: - python: '3.8' 1 .github/workflows/ci.yml: - python: 3.8 1 .github/workflows/ci.yml: python: 'pypy-3.8' 1 .github/workflows/configure.yml: cmake: "3.8" 1 .github/workflows/configure.yml: name: 🐍 3.8 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }} 1 .github/workflows/configure.yml: - name: Setup Python 3.8 1 .github/workflows/configure.yml: python-version: 3.8 1 .github/workflows/pip.yml: name: 🐍 3.8 • 📦 & 📦 tests • ubuntu-latest 1 .github/workflows/pip.yml: name: 🐍 3.8 • 📦 tests • windows-latest 2 .github/workflows/pip.yml: - name: Setup 🐍 3.8 2 .github/workflows/pip.yml: python-version: 3.8 2 include/pybind11/cast.h:#if !defined(PYPY_VERSION) 2 include/pybind11/cast.h:#if defined(PYPY_VERSION) 2 include/pybind11/cast.h: // PyPy: 7.3.7's 3.8 does not implement PyLong_*'s __index__ calls. 5 include/pybind11/detail/class.h:#if !defined(PYPY_VERSION) 1 include/pybind11/detail/class.h:#if defined(PYPY_VERSION) 1 include/pybind11/detail/class.h: // This was not needed before Python 3.8 (Python issue 35810) 1 include/pybind11/detail/common.h: && !defined(PYPY_VERSION) && !defined(PYBIND11_ASSERT_GIL_HELD_INCREF_DECREF) 2 include/pybind11/detail/common.h:# error "PYTHON < 3.8 IS UNSUPPORTED. pybind11 v2.13 was the last to support Python 3.7." 1 include/pybind11/detail/common.h:#if defined(PYPY_VERSION) && !defined(PYBIND11_SIMPLE_GIL_MANAGEMENT) 1 include/pybind11/detail/common.h:#if PY_VERSION_HEX < 0x03080000 1 include/pybind11/detail/common.h: = PYBIND11_TOSTRING(PY_MAJOR_VERSION) "." PYBIND11_TOSTRING(PY_MINOR_VERSION); \ 1 include/pybind11/detail/internals.h: // called. PYBIND11_TLS_FREE is PyThread_tss_free on python 3.7+. On older python, it does 1 include/pybind11/detail/internals.h:#if PYBIND11_INTERNALS_VERSION <= 4 || defined(PYPY_VERSION) 1 include/pybind11/detail/internals.h:// The old Python Thread Local Storage (TLS) API is deprecated in Python 3.7 in favor of the new 1 include/pybind11/detail/type_caster_base.h:#if defined(PYPY_VERSION) 1 include/pybind11/embed.h:# define PYBIND11_PYCONFIG_SUPPORT_PY_VERSION_HEX (0x03080000) 1 include/pybind11/embed.h:#if defined(PYPY_VERSION) 1 include/pybind11/eval.h: // globals if not yet present. Python 3.8 made PyRun_String behave 2 include/pybind11/eval.h:#if defined(PYPY_VERSION) 2 include/pybind11/eval.h: // was missing from PyPy3.8 7.3.7. 2 include/pybind11/gil.h: /// allowed during shutdown. Check _Py_IsFinalizing() on Python 3.7+, and 1 include/pybind11/pybind11.h:#if !defined(PYPY_VERSION) 4 include/pybind11/pybind11.h:#if !defined(PYPY_VERSION) && PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION == 9 1 include/pybind11/pytypes.h:#endif //! defined(PYPY_VERSION) 2 include/pybind11/pytypes.h:#if !defined(PYPY_VERSION) 1 include/pybind11/pytypes.h:# if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x07030a00 1 include/pybind11/pytypes.h:#ifdef PYPY_VERSION 1 include/pybind11/stl/filesystem.h:# if !defined(PYPY_VERSION) 2 pybind11/__init__.py:if sys.version_info < (3, 8): 2 pybind11/__init__.py: msg = "pybind11 does not support Python < 3.8. v2.13 was the last release supporting Python 3.7." 1 pyproject.toml:master.py-version = "3.8" 1 pyproject.toml:python_version = "3.8" 1 README.rst:lines of code and depend on Python (3.8+, or PyPy) and the C++ 2 README.rst:- Python 3.8+, and PyPy3 7.3 are supported with an implementation-agnostic 1 setup.cfg: Programming Language :: Python :: 3.8 1 setup.cfg:python_requires = >=3.8 1 setup.py:# TODO: use literals & overload (typing extensions or Python 3.8) 1 tests/CMakeLists.txt:if(NOT CMAKE_VERSION VERSION_LESS 3.8) 2 tests/constructor_stats.h:#if defined(PYPY_VERSION) 1 tests/env.py: doesn't work on CPython 3.8.0 with pytest==3.3.2 on Ubuntu 18.04 (#2922). 1 tests/requirements.txt:build~=1.0; python_version>="3.8" 1 tests/requirements.txt:numpy~=1.21.5; platform_python_implementation!="PyPy" and python_version>="3.8" and python_version<"3.10" 1 tests/requirements.txt:numpy~=1.23.0; python_version=="3.8" and platform_python_implementation=="PyPy" 1 tests/test_buffers.py: env.PYPY, reason="PyPy 7.3.7 doesn't clear this anymore", strict=False 1 tests/test_builtin_casters.py: # Before Python 3.8, `PyLong_AsLong` does not pick up on `obj.__index__`, 2 tests/test_builtin_casters.py: if (3, 8) <= sys.version_info < (3, 10) and env.CPYTHON: 4 tests/test_builtin_casters.py: # TODO: PyPy 3.8 does not behave like CPython 3.8 here yet (7.3.7) 1 tests/test_callbacks.py: assert m.test_callback3(z.double) == "func(43) = 86" 2 tests/test_call_policies.cpp:#if !defined(PYPY_VERSION) 1 tests/test_chrono.py: diff = m.test_chrono_float_diff(43.789012, 1.123456) 1 tests/test_constants_and_functions.py: assert m.f3(86) == 89 1 tests/test_eigen_matrix.py: a_copy3[8, 1] = 11 1 tests/test_eigen_matrix.py: assert np.all(cornersc == np.array([[1.0, 3], [7, 9]])) 1 tests/test_eigen_matrix.py: assert np.all(cornersr == np.array([[1.0, 3], [7, 9]])) 1 tests/test_eigen_matrix.py: mymat = chol(np.array([[1.0, 2, 4], [2, 13, 23], [4, 23, 77]])) 1 tests/test_exceptions.py: if hasattr(pytest, unraisable): # Python >= 3.8 and pytest >= 6 2 tests/test_exceptions.py:@pytest.mark.xfail(env.PYPY, reason="Failure on PyPy 3.8 (7.3.7)", strict=False) 1 tests/test_factory_constructors.py: assert [i.alive() for i in cstats] == [13, 7] 1 tests/test_kwargs_and_defaults.cpp:#ifdef PYPY_VERSION 1 tests/test_local_bindings.py: assert i1.get3() == 8 1 tests/test_methods_and_attributes.cpp:#if !defined(PYPY_VERSION) 1 tests/test_numpy_array.py: a = np.arange(3 * 7 * 2) + 1 1 tests/test_numpy_array.py: assert str(excinfo.value) == "cannot reshape array of size 42 into shape (3,7,1)" 2 tests/test_numpy_array.py: assert x.shape == (3, 7, 2) 2 tests/test_numpy_array.py: m.reshape_tuple(a, (3, 7, 1)) 2 tests/test_numpy_array.py: x = m.reshape_tuple(a, (3, 7, 2)) 1 tests/test_numpy_vectorize.py: assert np.isclose(m.vectorized_func3(np.array(3 + 7j)), [6 + 14j]) 1 tests/test_pickling.cpp:#if !defined(PYPY_VERSION) 1 tests/test_pytypes.cpp:#if (defined(__APPLE__) && defined(__clang__)) || defined(PYPY_VERSION) 1 tests/test_smart_ptr.cpp: m.def("make_myobject3_1", []() { return new MyObject3(8); }); 1 tests/test_smart_ptr.py: assert cstats.values() == ["MyObject3[9]", "MyObject3[8]", "MyObject3[9]"] 1 tests/test_stl_binders.py: assert v_int2 == m.VectorInt([0, 99, 2, 3, 4, 5, 6, 7, 0, 1, 2, 3, 88]) 1 tests/test_stl_binders.py: assert v_int2 == m.VectorInt([0, 99, 2, 3, 4, 5, 6, 7, 0, 1, 2, 3, 88, 4]) 1 tests/test_type_caster_pyobject_ptr.cpp:#if !defined(PYPY_VERSION) // It is not worth the trouble doing something special for PyPy. 1 tools/FindPythonLibsNew.cmake: set(PythonLibsNew_FIND_VERSION "3.8") 1 tools/JoinPaths.cmake:# https://docs.python.org/3.7/library/os.path.html#os.path.join 1 tools/pybind11NewTools.cmake: Python 3.8 REQUIRED COMPONENTS ${_pybind11_interp_component} ${_pybind11_dev_component} 1 tools/pybind11NewTools.cmake:# Python debug libraries expose slightly different objects before 3.8 1 tools/pybind11Tools.cmake: "3.12;3.11;3.10;3.9;3.8" 1 tools/pybind11Tools.cmake: if(NOT DEFINED PYPY_VERSION) 1 tools/pybind11Tools.cmake: message(STATUS "PYPY ${PYPY_VERSION} (Py ${PYTHON_VERSION})") 1 tools/pybind11Tools.cmake:# Python debug libraries expose slightly different objects before 3.8 1 tools/pybind11Tools.cmake: set(PYPY_VERSION ``` * Change `[tool.ruff]` `target-version` to `"py38"`, as suggested by @Skylion007
1 parent 2e260b0 commit 7233072

23 files changed

+45
-91
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -311,11 +311,6 @@ jobs:
311311
fail-fast: false
312312
matrix:
313313
clang:
314-
- 3.6
315-
- 3.7
316-
- 3.9
317-
- 7
318-
- 9
319314
- dev
320315
std:
321316
- 11
@@ -324,8 +319,6 @@ jobs:
324319
include:
325320
- clang: 5
326321
std: 14
327-
- clang: 10
328-
std: 17
329322
- clang: 11
330323
std: 20
331324
- clang: 12
@@ -503,10 +496,6 @@ jobs:
503496
fail-fast: false
504497
matrix:
505498
include:
506-
- { gcc: 7, std: 11 }
507-
- { gcc: 7, std: 17 }
508-
- { gcc: 8, std: 14 }
509-
- { gcc: 8, std: 17 }
510499
- { gcc: 9, std: 20 }
511500
- { gcc: 10, std: 17 }
512501
- { gcc: 10, std: 20 }
@@ -727,9 +716,9 @@ jobs:
727716

728717
# This tests an "install" with the CMake tools
729718
install-classic:
730-
name: "🐍 3.7 • Debian • x86 • Install"
719+
name: "🐍 3.9 • Debian • x86 • Install"
731720
runs-on: ubuntu-latest
732-
container: i386/debian:buster
721+
container: i386/debian:bullseye
733722

734723
steps:
735724
- uses: actions/checkout@v1 # v1 is required to run inside docker
@@ -809,7 +798,6 @@ jobs:
809798
fail-fast: false
810799
matrix:
811800
python:
812-
- '3.7'
813801
- '3.8'
814802
- '3.9'
815803
- '3.10'
@@ -827,8 +815,6 @@ jobs:
827815
args: -DCMAKE_CXX_STANDARD=20
828816
- python: '3.8'
829817
args: -DCMAKE_CXX_STANDARD=17
830-
- python: '3.7'
831-
args: -DCMAKE_CXX_STANDARD=14
832818

833819

834820
name: "🐍 ${{ matrix.python }} • MSVC 2019 • x86 ${{ matrix.args }}"

.github/workflows/configure.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ jobs:
3939

4040
- runs-on: macos-13
4141
arch: x64
42-
cmake: "3.7"
42+
cmake: "3.8"
4343

4444
- runs-on: windows-2019
4545
arch: x64 # x86 compilers seem to be missing on 2019 image
4646
cmake: "3.18"
4747

48-
name: 🐍 3.7 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
48+
name: 🐍 3.8 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
4949
runs-on: ${{ matrix.runs-on }}
5050

5151
steps:
5252
- uses: actions/checkout@v4
5353

54-
- name: Setup Python 3.7
54+
- name: Setup Python 3.8
5555
uses: actions/setup-python@v5
5656
with:
57-
python-version: 3.7
57+
python-version: 3.8
5858
architecture: ${{ matrix.arch }}
5959

6060
- name: Prepare env

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependency.
3434
Think of this library as a tiny self-contained version of Boost.Python
3535
with everything stripped away that isn't relevant for binding
3636
generation. Without comments, the core header files only require ~4K
37-
lines of code and depend on Python (3.7+, or PyPy) and the C++
37+
lines of code and depend on Python (3.8+, or PyPy) and the C++
3838
standard library. This compact implementation was possible thanks to
3939
some C++11 language features (specifically: tuples, lambda functions and
4040
variadic templates). Since its creation, this library has grown beyond
@@ -79,7 +79,7 @@ Goodies
7979
In addition to the core functionality, pybind11 provides some extra
8080
goodies:
8181

82-
- Python 3.7+, and PyPy3 7.3 are supported with an implementation-agnostic
82+
- Python 3.8+, and PyPy3 7.3 are supported with an implementation-agnostic
8383
interface (pybind11 2.9 was the last version to support Python 2 and 3.5).
8484

8585
- It is possible to bind C++11 lambda functions with captured

docs/advanced/classes.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -826,8 +826,7 @@ An instance can now be pickled as follows:
826826
always use the latest available version. Beware: failure to follow these
827827
instructions will cause important pybind11 memory allocation routines to be
828828
skipped during unpickling, which will likely lead to memory corruption
829-
and/or segmentation faults. Python defaults to version 3 (Python 3-3.7) and
830-
version 4 for Python 3.8+.
829+
and/or segmentation faults.
831830

832831
.. seealso::
833832

docs/advanced/exceptions.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,7 @@ Should they throw or fail to catch any exceptions in their call graph,
368368
the C++ runtime calls ``std::terminate()`` to abort immediately.
369369

370370
Similarly, Python exceptions raised in a class's ``__del__`` method do not
371-
propagate, but are logged by Python as an unraisable error. In Python 3.8+, a
372-
`system hook is triggered
371+
propagate, but ``sys.unraisablehook()`` `is triggered
373372
<https://docs.python.org/3/library/sys.html#sys.unraisablehook>`_
374373
and an auditing event is logged.
375374

docs/compiling.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ with ``PYTHON_EXECUTABLE``. For example:
426426

427427
.. code-block:: bash
428428
429-
cmake -DPYBIND11_PYTHON_VERSION=3.7 ..
429+
cmake -DPYBIND11_PYTHON_VERSION=3.8 ..
430430
431431
# Another method:
432432
cmake -DPYTHON_EXECUTABLE=/path/to/python ..
@@ -493,7 +493,7 @@ existing targets instead:
493493
cmake_minimum_required(VERSION 3.15...3.22)
494494
project(example LANGUAGES CXX)
495495
496-
find_package(Python 3.7 COMPONENTS Interpreter Development REQUIRED)
496+
find_package(Python 3.8 COMPONENTS Interpreter Development REQUIRED)
497497
find_package(pybind11 CONFIG REQUIRED)
498498
# or add_subdirectory(pybind11)
499499

include/pybind11/cast.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ struct type_caster<T, enable_if_t<std::is_arithmetic<T>::value && !is_std_char_t
158158
} else {
159159
handle src_or_index = src;
160160
// PyPy: 7.3.7's 3.8 does not implement PyLong_*'s __index__ calls.
161-
#if PY_VERSION_HEX < 0x03080000 || defined(PYPY_VERSION)
161+
#if defined(PYPY_VERSION)
162162
object index;
163163
if (!PYBIND11_LONG_CHECK(src.ptr())) { // So: index_check(src.ptr())
164164
index = reinterpret_steal<object>(PyNumber_Index(src.ptr()));
@@ -1503,7 +1503,7 @@ struct kw_only {};
15031503

15041504
/// \ingroup annotations
15051505
/// Annotation indicating that all previous arguments are positional-only; the is the equivalent of
1506-
/// an unnamed '/' argument (in Python 3.8)
1506+
/// an unnamed '/' argument
15071507
struct pos_only {};
15081508

15091509
template <typename T>

include/pybind11/detail/class.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -466,19 +466,9 @@ extern "C" inline void pybind11_object_dealloc(PyObject *self) {
466466

467467
type->tp_free(self);
468468

469-
#if PY_VERSION_HEX < 0x03080000
470-
// `type->tp_dealloc != pybind11_object_dealloc` means that we're being called
471-
// as part of a derived type's dealloc, in which case we're not allowed to decref
472-
// the type here. For cross-module compatibility, we shouldn't compare directly
473-
// with `pybind11_object_dealloc`, but with the common one stashed in internals.
474-
auto pybind11_object_type = (PyTypeObject *) get_internals().instance_base;
475-
if (type->tp_dealloc == pybind11_object_type->tp_dealloc)
476-
Py_DECREF(type);
477-
#else
478469
// This was not needed before Python 3.8 (Python issue 35810)
479470
// https://github.com/pybind/pybind11/issues/1946
480471
Py_DECREF(type);
481-
#endif
482472
}
483473

484474
std::string error_string();

include/pybind11/detail/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,8 @@ PYBIND11_WARNING_DISABLE_MSVC(4505)
272272
#endif
273273

274274
#include <Python.h>
275-
#if PY_VERSION_HEX < 0x03070000
276-
# error "PYTHON < 3.7 IS UNSUPPORTED. pybind11 v2.12 was the last to support Python 3.6."
275+
#if PY_VERSION_HEX < 0x03080000
276+
# error "PYTHON < 3.8 IS UNSUPPORTED. pybind11 v2.13 was the last to support Python 3.7."
277277
#endif
278278
#include <frameobject.h>
279279
#include <pythread.h>

include/pybind11/detail/internals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ inline void translate_local_exception(std::exception_ptr p) {
447447

448448
inline object get_python_state_dict() {
449449
object state_dict;
450-
#if PYBIND11_INTERNALS_VERSION <= 4 || PY_VERSION_HEX < 0x03080000 || defined(PYPY_VERSION)
450+
#if PYBIND11_INTERNALS_VERSION <= 4 || defined(PYPY_VERSION)
451451
state_dict = reinterpret_borrow<object>(PyEval_GetBuiltins());
452452
#else
453453
# if PY_VERSION_HEX < 0x03090000

include/pybind11/embed.h

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -104,23 +104,13 @@ inline void initialize_interpreter_pre_pyconfig(bool init_signal_handlers,
104104
detail::precheck_interpreter();
105105
Py_InitializeEx(init_signal_handlers ? 1 : 0);
106106

107-
// Before it was special-cased in python 3.8, passing an empty or null argv
108-
// caused a segfault, so we have to reimplement the special case ourselves.
109-
bool special_case = (argv == nullptr || argc <= 0);
110-
111-
const char *const empty_argv[]{"\0"};
112-
const char *const *safe_argv = special_case ? empty_argv : argv;
113-
if (special_case) {
114-
argc = 1;
115-
}
116-
117107
auto argv_size = static_cast<size_t>(argc);
118108
// SetArgv* on python 3 takes wchar_t, so we have to convert.
119109
std::unique_ptr<wchar_t *[]> widened_argv(new wchar_t *[argv_size]);
120110
std::vector<std::unique_ptr<wchar_t[], detail::wide_char_arg_deleter>> widened_argv_entries;
121111
widened_argv_entries.reserve(argv_size);
122112
for (size_t ii = 0; ii < argv_size; ++ii) {
123-
widened_argv_entries.emplace_back(detail::widen_chars(safe_argv[ii]));
113+
widened_argv_entries.emplace_back(detail::widen_chars(argv[ii]));
124114
if (!widened_argv_entries.back()) {
125115
// A null here indicates a character-encoding failure or the python
126116
// interpreter out of memory. Give up.

include/pybind11/eval.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
1919
PYBIND11_NAMESPACE_BEGIN(detail)
2020

2121
inline void ensure_builtins_in_globals(object &global) {
22-
#if defined(PYPY_VERSION) || PY_VERSION_HEX < 0x03080000
22+
#if defined(PYPY_VERSION)
2323
// Running exec and eval adds `builtins` module under `__builtins__` key to
2424
// globals if not yet present. Python 3.8 made PyRun_String behave
2525
// similarly. Let's also do that for older versions, for consistency. This

include/pybind11/gil.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,7 @@ class gil_scoped_release {
147147
// NOLINTNEXTLINE(cppcoreguidelines-prefer-member-initializer)
148148
tstate = PyEval_SaveThread();
149149
if (disassoc) {
150-
// Python >= 3.7 can remove this, it's an int before 3.7
151-
// NOLINTNEXTLINE(readability-qualified-auto)
152-
auto key = internals.tstate;
150+
auto key = internals.tstate; // NOLINT(readability-qualified-auto)
153151
PYBIND11_TLS_DELETE_VALUE(key);
154152
}
155153
}
@@ -173,9 +171,7 @@ class gil_scoped_release {
173171
PyEval_RestoreThread(tstate);
174172
}
175173
if (disassoc) {
176-
// Python >= 3.7 can remove this, it's an int before 3.7
177-
// NOLINTNEXTLINE(readability-qualified-auto)
178-
auto key = detail::get_internals().tstate;
174+
auto key = detail::get_internals().tstate; // NOLINT(readability-qualified-auto)
179175
PYBIND11_TLS_REPLACE_VALUE(key, tstate);
180176
}
181177
}

pybind11/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import sys
44

5-
if sys.version_info < (3, 7): # noqa: UP036
6-
msg = "pybind11 does not support Python < 3.7. v2.12 was the last release supporting Python 3.6."
5+
if sys.version_info < (3, 8): # noqa: UP036
6+
msg = "pybind11 does not support Python < 3.8. v2.13 was the last release supporting Python 3.7."
77
raise ImportError(msg)
88

99

pybind11/setup_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def has_flag(compiler: Any, flag: str) -> bool:
249249
cpp_flag_cache = None
250250

251251

252-
@lru_cache()
252+
@lru_cache
253253
def auto_cpp_level(compiler: Any) -> str | int:
254254
"""
255255
Return the max supported C++ std level (17, 14, or 11). Returns latest on Windows.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ignore_missing_imports = true
3030

3131

3232
[tool.pylint]
33-
master.py-version = "3.7"
33+
master.py-version = "3.8"
3434
reports.output-format = "colorized"
3535
messages_control.disable = [
3636
"design",
@@ -45,7 +45,7 @@ messages_control.disable = [
4545
]
4646

4747
[tool.ruff]
48-
target-version = "py37"
48+
target-version = "py38"
4949
src = ["src"]
5050

5151
[tool.ruff.lint]

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ classifiers =
1414
Topic :: Utilities
1515
Programming Language :: C++
1616
Programming Language :: Python :: 3 :: Only
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
@@ -39,5 +38,5 @@ project_urls =
3938
Chat = https://gitter.im/pybind/Lobby
4039

4140
[options]
42-
python_requires = >=3.7
41+
python_requires = >=3.8
4342
zip_safe = False

tests/requirements.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
--only-binary=:all:
2-
build~=1.0; python_version>="3.7"
3-
numpy~=1.20.0; python_version=="3.7" and platform_python_implementation=="PyPy"
2+
build~=1.0; python_version>="3.8"
43
numpy~=1.23.0; python_version=="3.8" and platform_python_implementation=="PyPy"
54
numpy~=1.25.0; python_version=="3.9" and platform_python_implementation=='PyPy'
6-
numpy~=1.21.5; platform_python_implementation!="PyPy" and python_version>="3.7" and python_version<"3.10"
5+
numpy~=1.21.5; platform_python_implementation!="PyPy" and python_version>="3.8" and python_version<"3.10"
76
numpy~=1.22.2; platform_python_implementation!="PyPy" and python_version=="3.10"
87
numpy~=1.26.0; platform_python_implementation!="PyPy" and python_version>="3.11" and python_version<"3.13"
98
pytest~=7.0

tests/test_builtin_casters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def cant_convert(v):
297297
cant_convert(3.14159)
298298
# TODO: Avoid DeprecationWarning in `PyLong_AsLong` (and similar)
299299
# TODO: PyPy 3.8 does not behave like CPython 3.8 here yet (7.3.7)
300-
if (3, 8) <= sys.version_info < (3, 10) and env.CPYTHON:
300+
if sys.version_info < (3, 10) and env.CPYTHON:
301301
with env.deprecated_call():
302302
assert convert(Int()) == 42
303303
else:

tests/test_exceptions.py

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -103,28 +103,24 @@ def ignore_pytest_unraisable_warning(f):
103103
@pytest.mark.xfail(env.PYPY, reason="Failure on PyPy 3.8 (7.3.7)", strict=False)
104104
@ignore_pytest_unraisable_warning
105105
def test_python_alreadyset_in_destructor(monkeypatch, capsys):
106-
hooked = False
107106
triggered = False
108107

109-
if hasattr(sys, "unraisablehook"): # Python 3.8+
110-
hooked = True
111-
# Don't take `sys.unraisablehook`, as that's overwritten by pytest
112-
default_hook = sys.__unraisablehook__
108+
# Don't take `sys.unraisablehook`, as that's overwritten by pytest
109+
default_hook = sys.__unraisablehook__
113110

114-
def hook(unraisable_hook_args):
115-
exc_type, exc_value, exc_tb, err_msg, obj = unraisable_hook_args
116-
if obj == "already_set demo":
117-
nonlocal triggered
118-
triggered = True
119-
default_hook(unraisable_hook_args)
120-
return
111+
def hook(unraisable_hook_args):
112+
exc_type, exc_value, exc_tb, err_msg, obj = unraisable_hook_args
113+
if obj == "already_set demo":
114+
nonlocal triggered
115+
triggered = True
116+
default_hook(unraisable_hook_args)
117+
return
121118

122-
# Use monkeypatch so pytest can apply and remove the patch as appropriate
123-
monkeypatch.setattr(sys, "unraisablehook", hook)
119+
# Use monkeypatch so pytest can apply and remove the patch as appropriate
120+
monkeypatch.setattr(sys, "unraisablehook", hook)
124121

125122
assert m.python_alreadyset_in_destructor("already_set demo") is True
126-
if hooked:
127-
assert triggered is True
123+
assert triggered is True
128124

129125
_, captured_stderr = capsys.readouterr()
130126
assert captured_stderr.startswith("Exception ignored in: 'already_set demo'")

tools/FindPythonLibsNew.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ endif()
9292

9393
# Use the Python interpreter to find the libs.
9494
if(NOT PythonLibsNew_FIND_VERSION)
95-
set(PythonLibsNew_FIND_VERSION "3.7")
95+
set(PythonLibsNew_FIND_VERSION "3.8")
9696
endif()
9797

9898
if(NOT CMAKE_VERSION VERSION_LESS "3.27")

tools/pybind11NewTools.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if(NOT Python_FOUND AND NOT Python3_FOUND)
5656
endif()
5757

5858
find_package(
59-
Python 3.7 REQUIRED COMPONENTS ${_pybind11_interp_component} ${_pybind11_dev_component}
59+
Python 3.8 REQUIRED COMPONENTS ${_pybind11_interp_component} ${_pybind11_dev_component}
6060
${_pybind11_quiet} ${_pybind11_global_keyword})
6161

6262
# If we are in submodule mode, export the Python targets to global targets.

tools/pybind11Tools.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ endif()
4343

4444
# A user can set versions manually too
4545
set(Python_ADDITIONAL_VERSIONS
46-
"3.12;3.11;3.10;3.9;3.8;3.7"
46+
"3.12;3.11;3.10;3.9;3.8"
4747
CACHE INTERNAL "")
4848

4949
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")

0 commit comments

Comments
 (0)