From a43876176fe7df59c793db8b367df26bec8b7084 Mon Sep 17 00:00:00 2001 From: Simeon Carstens Date: Thu, 20 Jan 2022 13:59:11 +0100 Subject: [PATCH] python3Packages.tensorflow-tensorboard: disable for Python 3.10 tensorboard is currently not compatible with Python 3.10, but will be in the next release (https://github.com/tensorflow/tensorboard/issues/5478). --- .../python-modules/tensorflow-tensorboard/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/tensorflow-tensorboard/default.nix b/pkgs/development/python-modules/tensorflow-tensorboard/default.nix index 123c339fea48..ceebad2a4769 100644 --- a/pkgs/development/python-modules/tensorflow-tensorboard/default.nix +++ b/pkgs/development/python-modules/tensorflow-tensorboard/default.nix @@ -2,6 +2,7 @@ , fetchPypi , buildPythonPackage , pythonOlder +, pythonAtLeast , numpy , wheel , werkzeug @@ -24,7 +25,7 @@ buildPythonPackage rec { pname = "tensorflow-tensorboard"; version = "2.6.0"; format = "wheel"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.6" || pythonAtLeast "3.10"; src = fetchPypi { pname = "tensorboard";