Skip to content

Commit 9edbb9d

Browse files
authored
Do not apply getnode patch for 3.13 on 3.14 (#649)
1 parent ea59920 commit 9edbb9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpython-unix/build-cpython.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fi
7979
# `uuid.getnode()` is not stable on our libuuid, CPython should fallback to another method
8080
# Cherry-pick https://github.com/python/cpython/pull/134704 until it is released
8181
# We could backport this to more versions too, it won't be done by the upstream
82-
if [[ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" && -n "${PYTHON_MEETS_MAXIMUM_VERSION_3_14}" ]]; then
82+
if [[ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" && -n "${PYTHON_MEETS_MAXIMUM_VERSION_3_13}" ]]; then
8383
patch -p1 -i ${ROOT}/patch-uuid-getnode-stable-3.13.patch
8484
fi
8585

0 commit comments

Comments
 (0)