From 6d29bb7bbd98cff34d5f50ea0aee771aec16cc6e Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 6 Jul 2025 22:58:14 -0700 Subject: [PATCH] versioning --- pyproject.toml | 4 ++-- unsloth/models/__init__.py | 1 + unsloth/models/_utils.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 74e1ccc190..8b24a52a6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ triton = [ ] huggingface = [ - "unsloth_zoo>=2025.6.8", + "unsloth_zoo>=2025.7.1", "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.8", + "unsloth_zoo>=2025.7.1", "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/__init__.py b/unsloth/models/__init__.py index fb3fc5c455..3378049014 100644 --- a/unsloth/models/__init__.py +++ b/unsloth/models/__init__.py @@ -19,6 +19,7 @@ from .qwen2 import FastQwen2Model from .qwen3 import FastQwen3Model from .qwen3_moe import FastQwen3MoeModel from .granite import FastGraniteModel +from .falcon_h1 import FastFalconH1Model from .dpo import PatchDPOTrainer, PatchKTOTrainer from ._utils import is_bfloat16_supported, is_vLLM_available, __version__ from .rl import PatchFastRL, vLLMSamplingParams \ No newline at end of file diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index 5da6ea67fe..602f7ee90f 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.12" +__version__ = "2025.7.1" __all__ = [ "SUPPORTS_BFLOAT16",