about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-05-11 14:17:46 +0200
committerGaetan Lepage <gaetan@glepage.com>2024-05-11 21:21:17 +0200
commit86df058f63513cb890f4c555923c31db91fb4a22 (patch)
tree3884aa272119cc63a2b013ed4353f49abb32ffd9 /pkgs
parent4806ec5e97e3803ea0ad6c94ef13410efdb570c2 (diff)
python311Packages.aesara: mark as unsupported on python 3.12
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/aesara/default.nix4
1 files changed, 3 insertions, 1 deletions
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";