From 4ccc5f34276dd8a8494acd05b967d451712d512f Mon Sep 17 00:00:00 2001 From: Nate Parsons <4307001+thehomebrewnerd@users.noreply.github.com> Date: Mon, 17 Jun 2024 08:58:51 -0500 Subject: [PATCH] Restrict numpy to <2.0.0 (#2743) * restrict numpy * update release notes --- docs/source/release_notes.rst | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 1a2eae7a09..7357ed4b0d 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -8,6 +8,7 @@ Future Release * Enhancements * Fixes * Changes + * Restrict numpy to <2.0.0 (:pr:`2743`) * Documentation Changes * Update API Docs to include previously missing primitives (:pr:`2737`) * Testing Changes diff --git a/pyproject.toml b/pyproject.toml index 87996b3526..133c9198fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ requires-python = ">=3.9,<4" dependencies = [ "cloudpickle >= 1.5.0", "holidays >= 0.17", - "numpy >= 1.25.0", + "numpy >= 1.25.0, < 2.0.0", "packaging >= 20.0", "pandas >= 2.0.0", "psutil >= 5.7.0",