From f507b08252771e32663b785c8f1c374e8f9c2ba8 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Tue, 27 Jul 2021 17:06:12 +0000 Subject: [PATCH] Silence tensorboard deprecation warnings --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6ef4f7401..b6a00cb98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -77,3 +77,8 @@ norecursedirs = [ "output", "__pycache__", ] +filterwarnings = [ + 'ignore:.*Create unlinked descriptors is going to go away.*:DeprecationWarning', + # https://github.com/tensorflow/tensorboard/pull/5138 + 'ignore:.*is a deprecated alias for the builtin.*:DeprecationWarning', +]