From d2e2c9694666eb883bc798fbb7c6323498f26d86 Mon Sep 17 00:00:00 2001 From: Michel Davit Date: Mon, 16 Dec 2024 10:10:32 +0100 Subject: [PATCH] Silence MiMa for tf-metadata --- build.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index 0c820f354a..a9aeeab0d9 100644 --- a/build.sbt +++ b/build.sbt @@ -428,6 +428,10 @@ ThisBuild / mimaBinaryIssueFilters ++= Seq( // added BQ Json object ProblemFilters.exclude[MissingTypesProblem]( "com.spotify.scio.bigquery.types.package$Json$" + ), + // tf-metadata upgrade + ProblemFilters.exclude[Problem]( + "org.tensorflow.metadata.v0.*" ) )