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:
parent
38aba237ad
commit
a43876176f
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user