From 86df058f63513cb890f4c555923c31db91fb4a22 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 11 May 2024 14:17:46 +0200 Subject: python311Packages.aesara: mark as unsupported on python 3.12 --- pkgs/development/python-modules/aesara/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs') diff --git a/pkgs/development/python-modules/aesara/default.nix b/pkgs/development/python-modules/aesara/default.nix index 85de2a67591bb..edf3f989ecbc1 100644 --- a/pkgs/development/python-modules/aesara/default.nix +++ b/pkgs/development/python-modules/aesara/default.nix @@ -16,6 +16,7 @@ , numba-scipy , numpy , pytestCheckHook +, pythonAtLeast , pythonOlder , scipy , typing-extensions @@ -26,7 +27,8 @@ buildPythonPackage rec { version = "2.9.3"; pyproject = true; - disabled = pythonOlder "3.8"; + # Python 3.12 is not supported: https://github.com/aesara-devs/aesara/issues/1520 + disabled = pythonOlder "3.8" || pythonAtLeast "3.12"; src = fetchFromGitHub { owner = "aesara-devs"; -- cgit 1.4.1