From f87256eeb19d6c2432ad247123d562f7473ba15d Mon Sep 17 00:00:00 2001 From: Dmitry Shemetov Date: Thu, 10 Oct 2024 15:36:10 -0700 Subject: [PATCH] repo: add lower bounds to deps, set pandas>=2 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1ba68ff..2c00f34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,12 +30,12 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "appdirs", - "diskcache", + "appdirs>=1.4.4", + "diskcache>=5.6.3", "epiweeks>=2.1", - "pandas>=1", + "pandas>=2", "requests>=2.25", - "tenacity", + "tenacity>=9.0.0", ] [project.optional-dependencies]