From a6c78a89efb3200861e9ac649deab2702286383a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 02:59:52 +0000 Subject: [PATCH] Update matplotlib requirement from <3.8,>=2.0 to >=2.0,<3.9 Updates the requirements on [matplotlib](https://github.com/matplotlib/matplotlib) to permit the latest version. - [Release notes](https://github.com/matplotlib/matplotlib/releases) - [Commits](https://github.com/matplotlib/matplotlib/compare/v2.0.0...v3.8.0) --- updated-dependencies: - dependency-name: matplotlib dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4065854..6ccec1b 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def _get_long_description(): version=_get_version(), python_requires=PYTHON_REQUIRES, install_requires=[ - 'matplotlib >=2.0,<3.8', + 'matplotlib >=2.0,<3.9', 'mpl-events >=0.0.5,<0.2.0' ], packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),