Bug fixes

This commit is contained in:
Daniel Han 2025-01-20 01:10:55 -08:00
commit a99d3953d5
3 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ triton = [
"triton @ https://github.com/woct0rdho/triton-windows/releases/download/v3.1.0-windows.post5/triton-3.1.0-cp312-cp312-win_amd64.whl ; python_version=='3.12' and platform_system == 'Windows'",
]
huggingface = [
"unsloth_zoo>=2025.1.2",
"unsloth_zoo>=2025.1.4",
"packaging",
"tyro",
"transformers>=4.46.1,!=4.47.0",
@ -285,7 +285,7 @@ colab-ampere-torch220 = [
"flash-attn>=2.6.3",
]
colab-new = [
"unsloth_zoo>=2025.1.2",
"unsloth_zoo>=2025.1.4",
"packaging",
"tyro",
"transformers>=4.46.1,!=4.47.0",

View file

@ -198,7 +198,7 @@ pass
# Check for unsloth_zoo
try:
unsloth_zoo_version = importlib_version("unsloth_zoo")
if Version(unsloth_zoo_version) < Version("2025.1.2"):
if Version(unsloth_zoo_version) < Version("2025.1.4"):
try:
os.system("pip install --upgrade --no-cache-dir --no-deps unsloth_zoo")
except:

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "2025.1.5"
__version__ = "2025.1.6"
__all__ = [
"SUPPORTS_BFLOAT16",