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).
This commit is contained in:
Simeon Carstens 2022-01-20 13:59:11 +01:00
parent 38aba237ad
commit a43876176f

View File

@ -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";