From e42bd98706ed5abc3c9a541b45b920a20f282aa9 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Wed, 8 Jan 2025 16:46:04 -0800 Subject: [PATCH] Update Unsloth-Zoo --- pyproject.toml | 4 ++-- unsloth/__init__.py | 2 +- unsloth/models/_utils.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 43ec13fd1c..b24abd3559 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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.1", + "unsloth_zoo>=2025.1.2", "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.1", + "unsloth_zoo>=2025.1.2", "packaging", "tyro", "transformers>=4.46.1,!=4.47.0", diff --git a/unsloth/__init__.py b/unsloth/__init__.py index d460432bbb..8002fbaefd 100644 --- a/unsloth/__init__.py +++ b/unsloth/__init__.py @@ -194,7 +194,7 @@ pass # Check for unsloth_zoo try: unsloth_zoo_version = importlib_version("unsloth_zoo") - if Version(unsloth_zoo_version) < Version("2025.1.1"): + if Version(unsloth_zoo_version) < Version("2025.1.2"): try: os.system("pip install --upgrade --no-cache-dir --no-deps unsloth_zoo") except: diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index 086c51e344..0036a18c4b 100644 --- a/unsloth/models/_utils.py +++ b/unsloth/models/_utils.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2025.1.4" +__version__ = "2025.1.5" __all__ = [ "SUPPORTS_BFLOAT16",