You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing bitsandbytes, all of a sudden my own test imports (from tests import ...) started failing due to a naming confllict.
Turns out the bitsandbytes/tests folder accidentally gets installed into the root of my Python site-packages! Along with all the other package main folders, there's now a tests folder containing the bitsandbytes tests.
System Info
Ubuntu / conda 24.11.3 / pip 23.3.2
Reproduction
pip install bitsandbytes
you'll find the folder python3.10/site-packages/tests with the contents of bitsandbytes/tests
Tested for Python 3.10 with bitsandbytes 0.45.0 and 0.44.1
Expected behavior
The tests shouldn't be installed/copied at all during pip installation.
The text was updated successfully, but these errors were encountered:
After installing bitsandbytes, all of a sudden my own test imports (
from tests import ...
) started failing due to a naming confllict.Turns out the
bitsandbytes/tests
folder accidentally gets installed into the root of my Pythonsite-packages
! Along with all the other package main folders, there's now atests
folder containing the bitsandbytes tests.System Info
Ubuntu / conda 24.11.3 / pip 23.3.2
Reproduction
pip install bitsandbytes
python3.10/site-packages/tests
with the contents ofbitsandbytes/tests
Tested for Python 3.10 with bitsandbytes 0.45.0 and 0.44.1
Expected behavior
The
tests
shouldn't be installed/copied at all during pip installation.The text was updated successfully, but these errors were encountered: