From 157af45f9ca3c6fbbb13b8ce6dff3ffd06d2e263 Mon Sep 17 00:00:00 2001 From: SongshGeo Date: Fri, 12 Dec 2025 15:02:57 +0100 Subject: [PATCH] fix(dependencies): :bug: update numpy version constraint in pyproject.toml and uv.lock This commit updates the version constraint for the `numpy` package in both `pyproject.toml` and `uv.lock` files from `<2` to `>=1.26`. This change ensures compatibility with newer versions of `numpy`, enhancing the stability and functionality of the project. --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3c2f7b82..04c574dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ dependencies = [ "fontawesome>=5", "seaborn>=0.13", "geocube>=0.5.0", - "numpy<2", + "numpy>=1.26", "urllib3", "icons", ] diff --git a/uv.lock b/uv.lock index 5500e679..e23e66d2 100644 --- a/uv.lock +++ b/uv.lock @@ -135,7 +135,7 @@ requires-dist = [ { name = "nbconvert", marker = "extra == 'docs'", specifier = ">=7.16.6" }, { name = "nbmake", marker = "extra == 'docs'", specifier = ">=1.5.5" }, { name = "netcdf4", specifier = ">=1.6" }, - { name = "numpy", specifier = "<2" }, + { name = "numpy", specifier = ">=1.26" }, { name = "pendulum", specifier = ">=3.0.0" }, { name = "pymdown-extensions", marker = "extra == 'docs'", specifier = ">=10.7" }, { name = "rioxarray", specifier = ">=0.13" },