From f28731e9c0e69c05ae00232350290e7fb74fb3b7 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sun, 28 Sep 2025 12:19:07 +0200 Subject: [PATCH] CI: temporary pin numpy to 2.2 for avoiding typing failures --- environment.yml | 4 +++- requirements-dev.txt | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/environment.yml b/environment.yml index 0d917be67e0c5..472e20e6a85bb 100644 --- a/environment.yml +++ b/environment.yml @@ -23,7 +23,9 @@ dependencies: # required dependencies - python-dateutil - - numpy<3 + # TEMP pin to avoid typing failures + # - numpy<3 + - numpy=2.2.6 # optional dependencies - adbc-driver-postgresql>=1.2.0 diff --git a/requirements-dev.txt b/requirements-dev.txt index 87384ee738cf3..4e8ee2b0f26ed 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -14,7 +14,7 @@ pytest-localserver PyQt5>=5.15.9 coverage python-dateutil -numpy<3 +numpy==2.2.6 adbc-driver-postgresql>=1.2.0 adbc-driver-sqlite>=1.2.0 beautifulsoup4>=4.12.3