Fixed bug where read-permission was assumed for a file. #497
This commit is contained in:
parent
37c25c1e0d
commit
f3232d1391
|
@ -275,3 +275,10 @@ Bug fixes:
|
||||||
Documentation:
|
Documentation:
|
||||||
- Improved documentation for GPUs that do not support 8-bit matmul. #529
|
- Improved documentation for GPUs that do not support 8-bit matmul. #529
|
||||||
- Added description and pointers for the NF4 data type. #543
|
- Added description and pointers for the NF4 data type. #543
|
||||||
|
|
||||||
|
### 0.40.2
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
- Fixed a but where a non-existent LD_LIBRARY_PATH variable led to a failure in python -m bitsandbytes #588
|
||||||
|
- Removed outdated get_cuda_lib_handle calls that lead to errors. #595 Thank you @ihsanturk
|
||||||
|
- Fixed bug where read-permission was assumed for a file. #497
|
||||||
|
|
|
@ -199,6 +199,8 @@ def remove_non_existent_dirs(candidate_paths: Set[Path]) -> Set[Path]:
|
||||||
except OSError as exc:
|
except OSError as exc:
|
||||||
if exc.errno != errno.ENAMETOOLONG:
|
if exc.errno != errno.ENAMETOOLONG:
|
||||||
raise exc
|
raise exc
|
||||||
|
except PermissionError as pex:
|
||||||
|
pass
|
||||||
|
|
||||||
non_existent_directories: Set[Path] = candidate_paths - existent_directories
|
non_existent_directories: Set[Path] = candidate_paths - existent_directories
|
||||||
if non_existent_directories:
|
if non_existent_directories:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -18,7 +18,7 @@ def read(fname):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=f"bitsandbytes",
|
name=f"bitsandbytes",
|
||||||
version=f"0.40.1.post1",
|
version=f"0.40.2",
|
||||||
author="Tim Dettmers",
|
author="Tim Dettmers",
|
||||||
author_email="dettmers@cs.washington.edu",
|
author_email="dettmers@cs.washington.edu",
|
||||||
description="k-bit optimizers and matrix multiplication routines.",
|
description="k-bit optimizers and matrix multiplication routines.",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user