From 36bbd15d932042abd8ec509e6da0c1ae4e552bd1 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Mon, 30 Jun 2025 06:08:14 -0700 Subject: [PATCH] Versioning --- pyproject.toml | 4 ++-- unsloth/models/_utils.py | 2 +- unsloth/models/vision.py | 2 -- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a19d68f94a..e1e021d5ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ triton = [ ] huggingface = [ - "unsloth_zoo>=2025.6.6", + "unsloth_zoo>=2025.6.7", "packaging", "tyro", "transformers>=4.51.3,!=4.47.0,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3", @@ -381,7 +381,7 @@ colab-ampere-torch220 = [ "flash-attn>=2.6.3", ] colab-new = [ - "unsloth_zoo>=2025.6.6", + "unsloth_zoo>=2025.6.7", "packaging", "tyro", "transformers>=4.51.3,!=4.47.0,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3", diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index a31bf7b604..154b437525 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.6.8" +__version__ = "2025.6.9" __all__ = [ "SUPPORTS_BFLOAT16", diff --git a/unsloth/models/vision.py b/unsloth/models/vision.py index be9fcd31eb..a8acdcea29 100644 --- a/unsloth/models/vision.py +++ b/unsloth/models/vision.py @@ -222,8 +222,6 @@ def unsloth_base_fast_generate( kwargs["compile_config"] = _compile_config pass - print(kwargs) - print(args) try: with torch.inference_mode(), autocaster: output = self._old_generate(*args, **kwargs)