From 5ec43a84d27e84aa220c25a54cbde79a2b1d0ca0 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Fri, 2 Jun 2023 12:54:56 -0700 Subject: [PATCH] Update pandas requirement from <2,>=1.5.2 to >=1.5.2,<3 (#133) (#170) Updates the requirements on [pandas](https://github.com/pandas-dev/pandas) to permit the latest version. - [Release notes](https://github.com/pandas-dev/pandas/releases) - [Changelog](https://github.com/pandas-dev/pandas/blob/main/RELEASE.md) - [Commits](https://github.com/pandas-dev/pandas/compare/v1.5.2...v2.0.0) --- updated-dependencies: - dependency-name: pandas dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (cherry picked from commit 3d4ff7f7474fff2469656aeaaed60a248f63baa1) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/requirements-docs.txt | 2 +- requirements-dev.txt | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/requirements-docs.txt b/docs/requirements-docs.txt index 77ecbfb5..6df4c25d 100644 --- a/docs/requirements-docs.txt +++ b/docs/requirements-docs.txt @@ -1,5 +1,5 @@ opensearch-py>=2 -pandas>=1.5,<2 +pandas>=1.5,<3 matplotlib>=3.6.0,<4 nbval sphinx diff --git a/requirements-dev.txt b/requirements-dev.txt index c2b91d82..7fe89354 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ # # Basic requirements # -pandas>=1.5.2,<2 +pandas>=1.5.2,<3 matplotlib>=3.6.2,<4 numpy>=1.24.0,<2 opensearch-py>=2.2.0 diff --git a/requirements.txt b/requirements.txt index 817ffa1f..3f0978ab 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ # # Basic requirements # -pandas>=1.5.2,<2 +pandas>=1.5.2,<3 matplotlib>=3.6.2,<4 numpy>=1.24.0,<2 opensearch-py>=2.2.0 diff --git a/setup.py b/setup.py index a3141c42..f8893bb4 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ }, install_requires=[ "opensearch-py>=2", - "pandas>=1.5,<2", + "pandas>=1.5,<3", "matplotlib>=3.6.0,<4", "numpy>=1.24.0,<2", ],