From 45f3c4e0534a69b1893c9b11620069823c7704b0 Mon Sep 17 00:00:00 2001 From: Collin Dutter Date: Mon, 23 Dec 2024 10:42:26 -0800 Subject: [PATCH] Loosen `numpy`s version constraint to `>=1.26.4,<3`. --- CHANGELOG.md | 1 + poetry.lock | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a8cb3296..c47b8c0dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `ToolkitTask` now serializes its `tools` field. - `PromptTask.prompt_driver` is now serialized. - `PromptTask` can now do everything a `ToolkitTask` can do. +- Loosten `numpy`s version constraint to `>=1.26.4,<3`. ### Fixed diff --git a/poetry.lock b/poetry.lock index 62be33455..1172953f6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -7228,4 +7228,4 @@ loaders-sql = ["sqlalchemy"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "479cade7f680bd843ad7f34b670af18852964b47556749a2e157c0f518fc4112" +content-hash = "1841e2589572c62261db2eaf398929efdea7f85da062202c3a1ceaf587b2b78e" diff --git a/pyproject.toml b/pyproject.toml index b7e52c6f7..f63dd396d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ rich = "^13.7.1" schema = "^0.7.7" pyyaml = "^6.0.1" tenacity = "^8.5.0" -numpy = "~2.0.2" +numpy = ">=1.26.4,<3" requests = "^2.32.0" filetype = "^1.2" urllib3 = ">=1.25.4,!=2.2.0,<3" # Version constraint required for botocore https://github.com/boto/botocore/pull/3141