File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to LocalLab will be documented in this file.
44
5+ ## [ 0.6.5] - 2025-05-16
6+
7+ ### Fixed
8+
9+ - Fixed critical error with Hugging Face progress bars display
10+ - Corrected function naming and imports for better compatibility
11+ - Improved early configuration system to properly set up logging
12+ - Enhanced error handling during model downloads
13+ - Fixed AttributeError with huggingface_hub module
14+
515## [ 0.6.4] - 2025-05-16
616
717### Improved
@@ -16,16 +26,6 @@ All notable changes to LocalLab will be documented in this file.
1626- Added informative messages before and after model downloads for better user experience
1727- Ensured consistent progress bar display across different model types and sizes
1828
19- ## [ 0.6.4] - 2025-05-16
20-
21- ### Fixed
22-
23- - Fixed critical error with Hugging Face progress bars display
24- - Corrected function naming and imports for better compatibility
25- - Improved early configuration system to properly set up logging
26- - Enhanced error handling during model downloads
27- - Fixed AttributeError with huggingface_hub module
28-
2929## [ 0.6.3] - 2025-05-16
3030
3131### Improved
Original file line number Diff line number Diff line change 66# This ensures Hugging Face's progress bars are displayed correctly
77from .utils .early_config import configure_hf_logging
88
9- __version__ = "0.6.4 " # Fixed Hugging Face progress bars display and improved model downloading experience
9+ __version__ = "0.6.5 " # Fixed Hugging Face progress bars display and improved model downloading experience
1010
1111# Only import what's necessary initially, lazy-load the rest
1212from .logger import get_logger
Original file line number Diff line number Diff line change 4747
4848setup (
4949 name = "locallab" ,
50- version = "0.6.4 " ,
50+ version = "0.6.5 " ,
5151 packages = find_packages (include = ["locallab" , "locallab.*" ]),
5252 install_requires = install_requires ,
5353 extras_require = {
You can’t perform that action at this time.
0 commit comments