← back to Exo
removed unused import
3210912a65b6f1a2b6cefc717be55a545f397922 · 2024-11-21 03:14:20 -0800 · josh
Files touched
M exo/download/hf/hf_helpers.pyM setup.py
Diff
commit 3210912a65b6f1a2b6cefc717be55a545f397922
Author: josh <eyasufikru567@gmail.com>
Date: Thu Nov 21 03:14:20 2024 -0800
removed unused import
---
exo/download/hf/hf_helpers.py | 1 -
setup.py | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/exo/download/hf/hf_helpers.py b/exo/download/hf/hf_helpers.py
index 93b565d6..5cf4990a 100644
--- a/exo/download/hf/hf_helpers.py
+++ b/exo/download/hf/hf_helpers.py
@@ -2,7 +2,6 @@ import aiofiles.os as aios
from typing import Union
import asyncio
import aiohttp
-from anyio import Path as AsyncPath
import json
import os
import sys
diff --git a/setup.py b/setup.py
index 79f4c3a2..daa4a4ae 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ install_requires = [
"rich==13.7.1",
"tenacity==9.0.0",
"tqdm==4.66.4",
- "transformers==4.46.3" if (sys.version_info.major==3 and sys.version_info.minor>=12) else "transformers==4.43.3" ,
+ "transformers==4.46.3" if (sys.version_info.major==3 and sys.version_info.minor>12) else "transformers==4.43.3" ,
"uuid==1.30",
"tinygrad @ git+https://github.com/tinygrad/tinygrad.git@232edcfd4f8b388807c64fb1817a7668ce27cbad",
]
← 0f784fff pr suggestion fixes
·
back to Exo
·
fix 400e428a →