From 367fb099bec5399df522bc453631b7a1875c7249 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 15 Dec 2025 23:09:07 +0000 Subject: [PATCH] python3Packages.pytensor: 2.35.1 -> 2.36.0 Diff: https://github.com/pymc-devs/pytensor/compare/rel-2.35.1...rel-2.36.0 Changelog: https://github.com/pymc-devs/pytensor/releases/tag/rel-2.36.0 --- pkgs/development/python-modules/pytensor/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pytensor/default.nix b/pkgs/development/python-modules/pytensor/default.nix index 40134295ee7a..8c10e0ec811f 100644 --- a/pkgs/development/python-modules/pytensor/default.nix +++ b/pkgs/development/python-modules/pytensor/default.nix @@ -15,13 +15,13 @@ filelock, logical-unification, minikanren, + numba, numpy, scipy, # tests jax, jaxlib, - numba, pytest-benchmark, pytest-mock, pytestCheckHook, @@ -33,7 +33,7 @@ buildPythonPackage rec { pname = "pytensor"; - version = "2.35.1"; + version = "2.36.0"; pyproject = true; src = fetchFromGitHub { @@ -43,7 +43,7 @@ buildPythonPackage rec { postFetch = '' sed -i 's/git_refnames = "[^"]*"/git_refnames = " (tag: ${src.tag})"/' $out/pytensor/_version.py ''; - hash = "sha256-5+yMZysK69g+3uYrP12WK3ngpAYn8XrHoVjLqjvbobg="; + hash = "sha256-tzwiPp0+xNKmndTn9Y1AXiqscQWaCC8gKgQHEtkyGag="; }; build-system = [ @@ -58,6 +58,7 @@ buildPythonPackage rec { filelock logical-unification minikanren + numba numpy scipy ];