From d533175e1e4b74075989300b929a2f5cce52cda2 Mon Sep 17 00:00:00 2001 From: Deuchnord Date: Sun, 9 Nov 2025 11:52:58 +0100 Subject: [PATCH] fix: add compatibility with last NumPy version This should be the last time we have to do this, since NumPy finally released the Python constraint --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8110c5e..a29e5a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,8 @@ skyfield = "^1.49" numpy = [ { version = "<1.25", python = "3.8.*" }, { version = "<2.1", python = "3.9.*" }, - { version = "^2.1", python = "^3.10" }, + { version = "<2.3", python = "3.10.*" }, + { version = "^2.3", python = ">=3.11" }, ] skyfield-data = "*" python-dateutil = "^2.8"