From 5c34d6293b7da6bb1c79847b07fe631de2ed784c Mon Sep 17 00:00:00 2001 From: Aliaksandr Date: Wed, 21 Jan 2026 16:40:25 +0200 Subject: [PATCH] python314Packages.ibis-framework: fix build by adding "-Wignore::pytest.PytestUnraisableExceptionWarning" --- pkgs/development/python-modules/ibis-framework/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/ibis-framework/default.nix b/pkgs/development/python-modules/ibis-framework/default.nix index c91d339074be..40062a4ba80e 100644 --- a/pkgs/development/python-modules/ibis-framework/default.nix +++ b/pkgs/development/python-modules/ibis-framework/default.nix @@ -148,6 +148,8 @@ buildPythonPackage (finalAttrs: { ++ lib.optionals (pythonAtLeast "3.14") [ # DeprecationWarning: '_UnionGenericAlias' is deprecated and slated for removal in Python 3.17 "-Wignore::DeprecationWarning" + # Multiple tests with warnings fail without it + "-Wignore::pytest.PytestUnraisableExceptionWarning" ]; enabledTestMarks = testBackends ++ [ "core" ];