From e43319bd6dc7f370eecfa923a126f09b740939d2 Mon Sep 17 00:00:00 2001 From: Deuchnord Date: Tue, 15 Aug 2023 16:20:29 +0200 Subject: [PATCH] fix(python-version): compatibility with NumPy (#65) --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d4da8d0..fea5dab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,12 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = "^3.8" skyfield = "^1.21" +numpy = [ + { version = "<1.25", python = "3.8.*" }, + { version = "^1.25", python = "^3.9" }, +] skyfield-data = ">=3,<6" python-dateutil = "^2.8"