Skip to content

Commit f2b304b

Browse files
committed
Versioning
1 parent 31b667b commit f2b304b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ huggingfacenotorch = [
5454
"huggingface_hub>=0.34.0",
5555
"hf_transfer",
5656
"diffusers",
57-
"transformers>=4.51.3,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3,!=4.53.0,!=4.54.0,!=4.55.0,!=4.55.1,<=4.56.2",
57+
"transformers>=4.51.3,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3,!=4.53.0,!=4.54.0,!=4.55.0,!=4.55.1,!=4.57.0,<=4.57.2",
5858
"trl>=0.18.2,!=0.19.0,<=0.23.0",
5959
]
6060
huggingface = [
6161
"unsloth[huggingfacenotorch]",
62-
"unsloth_zoo>=2025.10.11",
62+
"unsloth_zoo>=2025.10.12",
6363
"torchvision",
6464
"unsloth[triton]",
6565
]
@@ -489,10 +489,10 @@ colab-ampere-torch220 = [
489489
"flash-attn>=2.6.3 ; ('linux' in sys_platform)",
490490
]
491491
colab-new = [
492-
"unsloth_zoo>=2025.10.11",
492+
"unsloth_zoo>=2025.10.12",
493493
"packaging",
494494
"tyro",
495-
"transformers>=4.51.3,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3,!=4.53.0,!=4.54.0,!=4.55.0,!=4.55.1,<=4.56.2",
495+
"transformers>=4.51.3,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3,!=4.53.0,!=4.54.0,!=4.55.0,!=4.55.1,!=4.57.0,<=4.57.2",
496496
"datasets>=3.4.1,!=4.0.*,!=4.1.0",
497497
"sentencepiece>=0.2.0",
498498
"tqdm",

unsloth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
# Check for unsloth_zoo
7676
try:
7777
unsloth_zoo_version = importlib_version("unsloth_zoo")
78-
if Version(unsloth_zoo_version) < Version("2025.10.4"):
78+
if Version(unsloth_zoo_version) < Version("2025.10.12"):
7979
print(
8080
"Unsloth: Please update Unsloth and Unsloth-Zoo to the latest version!\n"\
8181
"Do this via `pip install --upgrade --force-reinstall --no-cache-dir --no-deps unsloth unsloth_zoo`"

unsloth/models/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "2025.10.10"
15+
__version__ = "2025.10.11"
1616

1717
__all__ = [
1818
"SUPPORTS_BFLOAT16",

0 commit comments

Comments
 (0)