File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,12 @@ all_hiddenimports = []
4141# Only collect essential data files and binaries for critical libraries
4242# This reduces startup time by avoiding unnecessary module imports
4343essential_libraries = {
44- 'torch' : True , # Keep collect_all for torch as it has many dynamic imports
45- 'transformers' : True , # Keep collect_all for transformers
46- 'safetensors' : True , # Keep collect_all for safetensors
44+ 'torch' : True ,
45+ 'transformers' : True ,
46+ 'tokenizers' : True ,
47+ 'huggingface_hub' : True ,
48+ 'safetensors' : True ,
49+ 'hf_xet' : True ,
4750 'numpy' : True ,
4851 'scipy' : True ,
4952 'pandas' : True ,
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ exclude = [
7979python = " >=3.11.0,<3.14.0"
8080
8181# ---- DL / HF stack ----
82- torch = " ^2.7.1 ,<2.8.0"
82+ torch = " ^2.7.2 ,<2.8.0"
8383torchmetrics = " ^1.8.0"
8484transformers = " ==4.56.2"
8585tokenizers = " >=0.22.0,<=0.23.0"
@@ -115,7 +115,7 @@ black = "25.1.0"
115115isort = " 6.0.1"
116116setuptools = " >=75.3.0"
117117joblib = " >=1.4.2"
118- urllib3 = " >=2.2.3 "
118+ urllib3 = " ^2.5.0 "
119119
120120[tool .poetry .scripts ]
121121ainode = " iotdb.ainode.core.script:main"
You can’t perform that action at this time.
0 commit comments