From 16e18a419415ee52728cdb9acfac75efc730d270 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 15 Apr 2026 18:08:52 +0000 Subject: [PATCH] python3Packages.deep-ep: remove eval-time warning --- pkgs/development/python-modules/deep-ep/default.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/deep-ep/default.nix b/pkgs/development/python-modules/deep-ep/default.nix index a26eafdd22e9..38309a06f988 100644 --- a/pkgs/development/python-modules/deep-ep/default.nix +++ b/pkgs/development/python-modules/deep-ep/default.nix @@ -64,13 +64,7 @@ buildPythonPackage.override { inherit (torch) stdenv; } (finalAttrs: { { TORCH_CUDA_ARCH_LIST = "${lib.concatStringsSep " " cudaCapabilities'}"; - DISABLE_SM90_FEATURES = - if disableSm90Features then - lib.warn '' - python3Packages.deepep: Disabling SM90 features as the provided `cudaCapabilities` list include '${minCudaCapability}' - '' "1" - else - "0"; + DISABLE_SM90_FEATURES = if disableSm90Features then "1" else "0"; CUDA_HOME = symlinkJoin { name = "cuda-redist";