Skip to content

Commit 3f865d0

Browse files
committed
Remove Python 3.7 from cross-compile-linux.sh
No longer supported in pybind11 3.0.0
1 parent eabe101 commit 3f865d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/pybind11-project/cross-compile-linux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
2525

2626
# Select the architectures and Python versions to build for.
2727
triples=(x86_64-bionic-linux-gnu armv6-rpi-linux-gnueabihf armv7-neon-linux-gnueabihf aarch64-rpi3-linux-gnu)
28-
python_versions=("python3.7" "python3.8" "python3.9" "python3.10" "python3.11" "python3.12" "python3.13" "python3.14")
28+
python_versions=("python3.8" "python3.9" "python3.10" "python3.11" "python3.12" "python3.13" "python3.14")
2929
pypy_triples=(x86_64-bionic-linux-gnu aarch64-rpi3-linux-gnu)
30-
pypy_versions=("pypy3.7-v7.3" "pypy3.8-v7.3" "pypy3.9-v7.3" "pypy3.10-v7.3" "pypy3.11-v7.3")
30+
pypy_versions=("pypy3.8-v7.3" "pypy3.9-v7.3" "pypy3.10-v7.3" "pypy3.11-v7.3")
3131

3232
# Ensure that the necessary toolchains are available.
3333
toolchain_folder="$PWD/../../toolchains"

0 commit comments

Comments
 (0)