__version__

This commit is contained in:
Daniel Han-Chen 2024-02-07 03:20:55 +11:00
commit 7da7afcc78
3 changed files with 1 additions and 3 deletions

View file

@ -23,7 +23,7 @@ classifiers = [
]
[tool.setuptools.dynamic]
version = {attr = "unsloth.__version__"}
version = {attr = "unsloth.models._utils.__version__"}
[tool.setuptools]
include-package-data = false

View file

@ -81,5 +81,4 @@ except:
pass
from .models import *
from .models import __version__
from .save import *

View file

@ -16,4 +16,3 @@ from .loader import FastLanguageModel
from .llama import FastLlamaModel
from .mistral import FastMistralModel
from .dpo import PatchDPOTrainer
from ._utils import __version__