We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
scipy
bitsanbytes
ModuleNotFoundError
1 parent 355c974 commit 0dce99dCopy full SHA for 0dce99d
.github/workflows/build.yml
@@ -25,8 +25,8 @@ jobs:
25
python -m pip install --upgrade pip
26
pip install -r requirements.txt
27
# Install extras
28
- # [bnb]
29
- pip install bitsandbytes
+ # [bnb] (TODO: Remove `scipy` once `bnb` adds it as hard dep)
+ pip install bitsandbytes scipy
30
# [dev]
31
pip install black hypothesis isort flake8 pre-commit pytest pytest-cov
32
setup.cfg
@@ -29,7 +29,9 @@ install_requires =
tritonclient
[options.extras_require]
-bnb = bitsandbytes
+bnb =
33
+ bitsandbytes
34
+ scipy # fix(bnb): Remove when `bitsandbytes` adds this dependency
35
dev =
36
black
37
hypothesis
0 commit comments