-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hyperion: fix build with Python 3.13
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
packages/addons/service/hyperion/patches/hyperion-0001-fix-build-with-python-313.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From 8647a93f99121084e8749982f6f8f56e254d815d Mon Sep 17 00:00:00 2001 | ||
From: Rudi Heitbaum <[email protected]> | ||
Date: Mon, 9 Dec 2024 11:18:31 +1100 | ||
Subject: [PATCH] Remove PyEval_ReleaseLock(); | ||
|
||
--- | ||
libsrc/effectengine/Effect.cpp | 1 - | ||
1 file changed, 1 deletion(-) | ||
|
||
diff --git a/libsrc/effectengine/Effect.cpp b/libsrc/effectengine/Effect.cpp | ||
index b89a36cb..a60c935a 100644 | ||
--- a/libsrc/effectengine/Effect.cpp | ||
+++ b/libsrc/effectengine/Effect.cpp | ||
@@ -120,7 +120,6 @@ void Effect::run() | ||
// Clean up the thread state | ||
Py_EndInterpreter(_interpreterThreadState); | ||
_interpreterThreadState = nullptr; | ||
- PyEval_ReleaseLock(); | ||
} | ||
|
||
int Effect::getPriority() const |