From 6d8854bd2ee92cbef96038835edc6e4e09952671 Mon Sep 17 00:00:00 2001 From: Brian Kroth Date: Mon, 20 May 2024 10:41:06 -0500 Subject: [PATCH] Pin a lower version of matplotlib while we wait for dabl to get fixed (#743) https://github.com/dabl/dabl/pull/341 --- mlos_viz/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mlos_viz/setup.py b/mlos_viz/setup.py index 19206ebf80..22b7a6857f 100644 --- a/mlos_viz/setup.py +++ b/mlos_viz/setup.py @@ -83,6 +83,7 @@ def _get_long_desc_from_readme(base_url: str) -> dict: install_requires=[ 'mlos-bench==' + _VERSION, 'dabl>=0.2.6', + 'matplotlib<3.9', # FIXME: https://github.com/dabl/dabl/pull/341 ], extras_require=extra_requires, author='Microsoft',