From 750e84e4916e6ec1f364bd30d5504f9b0e437f93 Mon Sep 17 00:00:00 2001 From: Jeong-Yoon Lee Date: Fri, 8 Mar 2024 10:59:48 -0800 Subject: [PATCH] relax pandas version requirement (#743) --- .gitignore | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 90af0cb3..4ca21107 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ dist _build/ .ipynb_checkpoints/ *.c +*.cpp *.so .coverage* *.html diff --git a/pyproject.toml b/pyproject.toml index de517a31..9dbbfbb5 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "numpy>=1.18.5", "scipy>=1.4.1", "matplotlib", - "pandas>=0.24.1,<1.4.0", + "pandas>=0.24.1", "scikit-learn>=0.22.0", "statsmodels>=0.9.0", "Cython<=0.29.34",