From 66587197d6a798c33f4e8998d34d7dacbd368f06 Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Thu, 8 May 2025 18:12:03 +0200 Subject: [PATCH] python3Packages.cut-cross-entropy: remove restriction on Python 3.13 Python 3.13 support requires PyTorch 2.6, which has been merged into master after this package has been merged, in https://github.com/NixOS/nixpkgs/pull/377785. This restriction is no longer required. --- .../development/python-modules/cut-cross-entropy/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/python-modules/cut-cross-entropy/default.nix b/pkgs/development/python-modules/cut-cross-entropy/default.nix index df404e9c508a..5b20239c56e1 100644 --- a/pkgs/development/python-modules/cut-cross-entropy/default.nix +++ b/pkgs/development/python-modules/cut-cross-entropy/default.nix @@ -18,7 +18,6 @@ huggingface-hub, pandas, pytestCheckHook, - pythonAtLeast, tqdm, transformers, }: @@ -37,10 +36,6 @@ buildPythonPackage { hash = "sha256-BVPon+T7chkpozX/IZU3KZMw1zRzlYVvF/22JWKjT2Y="; }; - # Python 3.13 support requires PyTorch 2.6, which is not merged into master yet - # https://github.com/NixOS/nixpkgs/pull/377785 - disabled = pythonAtLeast "3.13"; - build-system = [ setuptools setuptools-scm