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 2
2
3
3
All notable changes to LocalLab will be documented in this file.
4
4
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
+
5
15
## [ 0.6.4] - 2025-05-16
6
16
7
17
### Improved
@@ -16,16 +26,6 @@ All notable changes to LocalLab will be documented in this file.
16
26
- Added informative messages before and after model downloads for better user experience
17
27
- Ensured consistent progress bar display across different model types and sizes
18
28
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
-
29
29
## [ 0.6.3] - 2025-05-16
30
30
31
31
### Improved
Original file line number Diff line number Diff line change 6
6
# This ensures Hugging Face's progress bars are displayed correctly
7
7
from .utils .early_config import configure_hf_logging
8
8
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
10
10
11
11
# Only import what's necessary initially, lazy-load the rest
12
12
from .logger import get_logger
Original file line number Diff line number Diff line change 47
47
48
48
setup (
49
49
name = "locallab" ,
50
- version = "0.6.4 " ,
50
+ version = "0.6.5 " ,
51
51
packages = find_packages (include = ["locallab" , "locallab.*" ]),
52
52
install_requires = install_requires ,
53
53
extras_require = {
You can’t perform that action at this time.
0 commit comments