python3Packages.aiomultiprocess: fix tests on python 3.14 (#519281)

This commit is contained in:
Fabian Affolter
2026-05-15 15:53:38 +00:00
committed by GitHub
2 changed files with 26 additions and 0 deletions
@@ -18,6 +18,11 @@ buildPythonPackage rec {
hash = "sha256-LWrAr3i2CgOMZFxWi9B3kiou0UtaHdDbpkr6f9pReRA=";
};
patches = [
# https://github.com/omnilib/aiomultiprocess/issues/220
./python314-compat.patch
];
build-system = [ flit-core ];
nativeCheckInputs = [ pytestCheckHook ];
@@ -0,0 +1,21 @@
diff --git a/aiomultiprocess/tests/base.py b/aiomultiprocess/tests/base.py
--- a/aiomultiprocess/tests/base.py
+++ b/aiomultiprocess/tests/base.py
@@ -56,7 +56,7 @@ async def terminate(process):
def async_test(fn):
@wraps(fn)
def wrapper(*args, **kwargs):
- loop = asyncio.get_event_loop()
+ loop = asyncio.new_event_loop()
return loop.run_until_complete(fn(*args, **kwargs))
return wrapper
@@ -66,7 +66,7 @@ def perf_test(fn):
@wraps(fn)
@skipUnless(RUN_PERF_TESTS, "Performance test")
def wrapper(*args, **kwargs):
- loop = asyncio.get_event_loop()
+ loop = asyncio.new_event_loop()
return loop.run_until_complete(fn(*args, **kwargs))
return wrapper