Skip to content

Commit 71172a6

Browse files
committed
Versioning
1 parent bbdab30 commit 71172a6

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ huggingfacenotorch = [
5555
"hf_transfer",
5656
"diffusers",
5757
"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",
58-
"trl>=0.7.9,!=0.9.0,!=0.9.1,!=0.9.2,!=0.9.3,!=0.15.0,!=0.19.0,<=0.23.0",
58+
"trl>=0.18.2,!=0.19.0,<=0.23.0",
5959
]
6060
huggingface = [
6161
"unsloth[huggingfacenotorch]",
62-
"unsloth_zoo>=2025.10.9",
62+
"unsloth_zoo>=2025.10.10",
6363
"torchvision",
6464
"unsloth[triton]",
6565
]
@@ -461,7 +461,7 @@ colab-ampere-torch220 = [
461461
"flash-attn>=2.6.3 ; ('linux' in sys_platform)",
462462
]
463463
colab-new = [
464-
"unsloth_zoo>=2025.10.9",
464+
"unsloth_zoo>=2025.10.10",
465465
"packaging",
466466
"tyro",
467467
"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",
@@ -479,7 +479,7 @@ colab-new = [
479479
]
480480
colab-no-deps = [
481481
"accelerate>=0.34.1",
482-
"trl>=0.7.9,!=0.9.0,!=0.9.1,!=0.9.2,!=0.9.3,!=0.15.0,!=0.19.0,<=0.23.0",
482+
"trl>=0.18.2,!=0.19.0,<=0.23.0",
483483
"peft>=0.7.1",
484484
"xformers ; ('linux' in sys_platform or sys_platform == 'win32') and (platform_machine == 'AMD64' or platform_machine == 'x86_64')",
485485
"bitsandbytes>=0.45.5,!=0.46.0,!=0.48.0",

unsloth/import_fixes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,6 @@ def patch_trackio():
164164
# See https://github.com/unslothai/notebooks/pull/110
165165
os.environ["TRACKIO_LOGO_LIGHT_URL"] = "https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20logo%20black%20text.png"
166166
os.environ["TRACKIO_LOGO_DARK_URL"] = "https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20logo%20white%20text.png"
167-
os.environ["TRACKIO_PLOT_ORDER"] = "train/loss"
167+
os.environ["TRACKIO_PLOT_ORDER"] = "train/reward"
168168
pass
169169
pass

unsloth/models/_utils.py

Lines changed: 1 addition & 9 deletions
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.8"
15+
__version__ = "2025.10.9"
1616

1717
__all__ = [
1818
"SUPPORTS_BFLOAT16",
@@ -357,14 +357,6 @@ def filter(self, x): return not (self.text in x.getMessage())
357357
except:
358358
pass
359359

360-
# Skipping import of cpp extensions due to incompatible torch version
361-
try:
362-
from torchao import logger as torchao_logger
363-
torchao_logger.addFilter(HideLoggingMessage("Skipping import"))
364-
del torchao_logger
365-
except:
366-
pass
367-
368360
# Errors out on
369361
# Some weights of Gemma3nForConditionalGeneration were not initialized from the model checkpoint
370362
from transformers.modeling_utils import logger as transformers_logger

0 commit comments

Comments
 (0)