python3Packages.torch: 2.7.0 -> 2.7.1

Diff: https://github.com/pytorch/pytorch/compare/v2.7.0...v2.7.1

Changelog: https://github.com/pytorch/pytorch/releases/tag/v2.7.1
This commit is contained in:
Gaetan Lepage
2025-06-05 00:00:16 +02:00
parent 33c090c50d
commit 7fe16a7df1
2 changed files with 4 additions and 4 deletions
@@ -268,7 +268,7 @@ in
buildPythonPackage rec {
pname = "torch";
# Don't forget to update torch-bin to the same version.
version = "2.7.0";
version = "2.7.1";
pyproject = true;
stdenv = stdenv';
@@ -4,7 +4,7 @@
fetchFromGitHub,
runCommand,
}:
assert version == "2.7.0";
assert version == "2.7.1";
(rec {
src_asmjit = fetchFromGitHub {
owner = "asmjit";
@@ -430,8 +430,8 @@ assert version == "2.7.0";
src_pytorch = fetchFromGitHub {
owner = "pytorch";
repo = "pytorch";
rev = "v2.7.0";
hash = "sha256-ReXyzy+OuYxEQwU+t2WL3+jqd7ItdW6w8MiS0f9t+aY=";
rev = "v2.7.1";
hash = "sha256-p/SkVM6N4XGr44WB9ZaMLu6nfJGcaKHfb1hDY6qbZBw=";
};
src_sleef = fetchFromGitHub {
owner = "shibatch";