From c813ea1b643764400434092cab62685604bb8fe5 Mon Sep 17 00:00:00 2001 From: denehoffman Date: Wed, 4 Dec 2024 15:31:18 -0500 Subject: [PATCH] ci: raise minimum python version to 3.8 to allow for numpy v2 constraint Technically numpy v2.1 has dropped support for 3.9, but as it's still getting security updates till the end of next year, I'm going to keep it for now. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5db0b5f..93ad334 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "laddu" -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", @@ -12,7 +12,7 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "numpy", + "numpy>=2", "docopt-ng", "loguru", "pandas",