From 343808fd9f585ccc948d8e0be606e9e85b5a1c8b Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Thu, 23 Nov 2023 07:27:05 -0500 Subject: [PATCH] Bump min vl-convert-python version --- altair/utils/_importers.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/altair/utils/_importers.py b/altair/utils/_importers.py index bb539fb73..c8cd21c95 100644 --- a/altair/utils/_importers.py +++ b/altair/utils/_importers.py @@ -29,7 +29,7 @@ def import_vegafusion() -> ModuleType: def import_vl_convert() -> ModuleType: - min_version = "1.0.1" + min_version = "1.1.0" try: version = importlib_version("vl-convert-python") if Version(version) < Version(min_version): diff --git a/pyproject.toml b/pyproject.toml index dc562c780..d0978aa71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ dev = [ "pytest-cov", "m2r", "vega_datasets", - "vl-convert-python>=1.0.1", + "vl-convert-python>=1.1.0", "mypy", "pandas-stubs", "types-jsonschema",