Skip to content

Commit

Permalink
Remove python_for_build_deps.patch, since it's not reliable on Python…
Browse files Browse the repository at this point in the history
… 3.12
  • Loading branch information
mhsmith committed Feb 8, 2024
1 parent 72348e4 commit 4fd0ae2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
5 changes: 4 additions & 1 deletion target/python/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ if [ $version_int -le 311 ]; then
patches+=" sysroot_paths"
fi
if [ $version_int -ge 311 ]; then
patches+=" python_for_build_deps"
# Although this patch applies cleanly to 3.12, it no longer has the intended effect,
# because the stdlib extension modules are now built using autoconf rather than
# distutils. Replace it with the fix we upstreamed to 3.13.
patches+=" python_for_build_deps_REMOVED"
fi
if [ $version_int -ge 312 ]; then
patches+=" bldlibrary grp"
Expand Down
16 changes: 0 additions & 16 deletions target/python/patches/python_for_build_deps.patch

This file was deleted.

0 comments on commit 4fd0ae2

Please sign in to comment.