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