python3Packages.bitsandbytes: 0.46.1 -> 0.47.0 (#436594)

authored by Gaétan Lepage and committed by GitHub f55cde13 0d1ff274

+8 -2
+8 -2
pkgs/development/python-modules/bitsandbytes/default.nix
··· 5 5 buildPythonPackage, 6 6 fetchFromGitHub, 7 7 cmake, 8 + 9 + # build-system 10 + scikit-build-core, 8 11 setuptools, 12 + 13 + # dependencies 9 14 scipy, 10 15 }: 11 16 12 17 let 13 18 pname = "bitsandbytes"; 14 - version = "0.46.1"; 19 + version = "0.47.0"; 15 20 16 21 inherit (torch) cudaPackages cudaSupport; 17 22 inherit (cudaPackages) cudaMajorMinorVersion; ··· 57 62 owner = "bitsandbytes-foundation"; 58 63 repo = "bitsandbytes"; 59 64 tag = version; 60 - hash = "sha256-CAGKp8aFp1GjJ1uR+O1Ptxr8wfz1zECCEWhWMYs3zEQ="; 65 + hash = "sha256-iUAeiNbPa3Q5jJ4lK2G0WvTKuipb0zO1mNe+wcRdnqs="; 61 66 }; 62 67 63 68 # By default, which library is loaded depends on the result of `torch.cuda.is_available()`. ··· 82 87 ]; 83 88 84 89 build-system = [ 90 + scikit-build-core 85 91 setuptools 86 92 ]; 87 93