From ebde675f5b8dcd64d2aa59426e133ac9f25a6b5d Mon Sep 17 00:00:00 2001 From: tlento Date: Wed, 9 Aug 2023 16:34:48 -0700 Subject: [PATCH] Update Pandas dependency to 1.5.x Our CI jobs were taking forever due to needing to build an old version of pandas from source for Python 3.11. This updates the dependency to 1.5.x, which allows us to use versions that should have updated pre-built wheels available. --- .changes/unreleased/Dependencies-20230810-112855.yaml | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Dependencies-20230810-112855.yaml diff --git a/.changes/unreleased/Dependencies-20230810-112855.yaml b/.changes/unreleased/Dependencies-20230810-112855.yaml new file mode 100644 index 0000000000..833362a90e --- /dev/null +++ b/.changes/unreleased/Dependencies-20230810-112855.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Update pandas to 1.5.x +time: 2023-08-10T11:28:55.086363-07:00 +custom: + Author: tlento + PR: "719" diff --git a/pyproject.toml b/pyproject.toml index 6ec8ca7754..d7bea5715c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ dependencies = [ "jsonschema==3.2.0", "more-itertools==8.10.0", "numpy>=1.22.2", - "pandas~=1.3.0", + "pandas~=1.5.0", "pydantic~=1.10.0", "python-dateutil==2.8.2", "rapidfuzz==3.0.0",