python3Packages.unsloth 2025.8.1 -> 2025.8.9 and dependency update (#437079)

This commit is contained in:
Gaétan Lepage
2025-08-28 00:35:33 +02:00
committed by GitHub
3 changed files with 12 additions and 7 deletions
@@ -24,7 +24,7 @@
buildPythonPackage {
pname = "cut-cross-entropy";
version = "25.5.1";
version = "25.7.2";
pyproject = true;
# The `ml-cross-entropy` Pypi comes from a third-party.
@@ -32,8 +32,8 @@ buildPythonPackage {
src = fetchFromGitHub {
owner = "apple";
repo = "ml-cross-entropy";
rev = "b616b222976b235647790a16d0388338b9e18941"; # no tags
hash = "sha256-BVPon+T7chkpozX/IZU3KZMw1zRzlYVvF/22JWKjT2Y=";
rev = "b19a424ed30a05b8261cfa84d83b2601a9454c67"; # no tags
hash = "sha256-AwUqKiI7XjEOZ7ofjQCOsqvxHyTFD4RZ70odPyxxntc=";
};
build-system = [
@@ -65,6 +65,10 @@ buildPythonPackage {
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
"test_vocab_parallel" # Requires CUDA but does not use pytest.skip
];
pythonImportsCheck = [
"cut_cross_entropy"
];
@@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "trl";
version = "0.20.0";
version = "0.21.0";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "trl";
tag = "v${version}";
hash = "sha256-z14refdNySnKcfFq54l+slsi4SLe5FG8UNoAKxfmAy0=";
hash = "sha256-9jbbbiGa/2NqHKe9rxDRyzfaWyy7tsoeHaMlpg0Oxk0=";
};
build-system = [
@@ -31,14 +31,14 @@
buildPythonPackage rec {
pname = "unsloth";
version = "2025.8.1";
version = "2025.8.9";
pyproject = true;
# Tags on the GitHub repo don't match
src = fetchPypi {
pname = "unsloth";
inherit version;
hash = "sha256-hkE+f6apgilrE0lFTWRe8PEvRQ71YuoHpQgzd/R/FaI=";
hash = "sha256-XKYKEJCiOucuGfout8+FiTfO3KXvkucaduwWnZR5OwA=";
};
build-system = [
@@ -72,6 +72,7 @@ buildPythonPackage rec {
# but it is not used.
# Upstream issue: https://github.com/unslothai/unsloth-zoo/pull/68
pythonRelaxDeps = [
"datasets"
"protobuf"
"transformers"
"torch"