From 8cb36f5d88d28b702fd7c7022a4b4476040ad8b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 17 Sep 2025 15:14:03 +0200 Subject: [PATCH] pypy3: 7.3.19 -> 7.3.20 This fixes https://github.com/pypy/pypy/issues/5247 which should fix a failing test in numpy https://github.com/numpy/numpy/issues/28469 --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 980ebdf2d582..c7ae19bfc1f8 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -150,10 +150,10 @@ sourceVersion = { major = "7"; minor = "3"; - patch = "19"; + patch = "20"; }; - hash = "sha256-SBfARLtGmjJ05gqjZFdw+B60+RZup/3E5sNRNFVUyNg="; + hash = "sha256-d4bdp2AAPi6nQJwQN+UCAMV47EJ84CRaxM11hxCyBvs="; pythonVersion = "3.11"; db = db.override { dbmSupport = !stdenv.hostPlatform.isDarwin; }; python = __splicedPackages.pypy27;