From 01947e96347788cabf211e34465e473e83b3bf08 Mon Sep 17 00:00:00 2001 From: Kit Date: Sat, 3 Aug 2024 05:52:52 -0400 Subject: [PATCH] update matplotlib requirements --- README.md | 2 +- requirements.txt | 4 ++-- setup.cfg | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7850e61..213639c 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ To include a specific release, replace `[version]` with the branch associated wi # Changes by version v0.21.8 -- update numpy requirements < 2 +- update version dependencies for numpy < 2, matplotlib < 3.9 - bug fix: resolved start_time inaccuracy for Axivity devices when using fractional timestamps v0.21.7 diff --git a/requirements.txt b/requirements.txt index 1e0b385..ac2d62f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -numpy >= 1.22.4, < 2.0.0 +numpy >= 1.22.4, < 2 numba >= 0.59.0 pandas >= 1.4.0 -matplotlib >= 3.5.2 +matplotlib >= 3.5.2, < 3.9 tqdm >= 4.64.0 isodate >= 0.6.1 scipy >= 1.7.3 diff --git a/setup.cfg b/setup.cfg index 99f5ef5..5f89dcc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,7 +26,7 @@ install_requires = numpy >= 1.22.4, < 2.0.0 numba >= 0.59.0 pandas >= 1.4.0 - matplotlib >= 3.5.2 + matplotlib >= 3.5.2, < 3.9 tqdm >= 4.64.0 isodate >= 0.6.1 scipy >= 1.7.3