From ca2662455d1b12accdfd5a14dfbcf4e124d916f9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 28 Jun 2026 23:29:56 +0200 Subject: [PATCH] python3Packages.duckdb: ignore numpy deprecation --- pkgs/development/python-modules/duckdb/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/duckdb/default.nix b/pkgs/development/python-modules/duckdb/default.nix index 4ce00e36200a..edc2419ab06a 100644 --- a/pkgs/development/python-modules/duckdb/default.nix +++ b/pkgs/development/python-modules/duckdb/default.nix @@ -109,7 +109,10 @@ buildPythonPackage rec { ++ optional-dependencies.all; # test flags from .github/workflows/Python.yml - pytestFlags = [ "--verbose" ]; + pytestFlags = [ + "--verbose" + "-Wignore::DeprecationWarning" + ]; enabledTestPaths = if stdenv.hostPlatform.isDarwin then [ "tests/fast" ] else [ "tests" ]; disabledTestPaths = [