From c7a78bcb8951fe3ab93af79346e9cde39f73aab1 Mon Sep 17 00:00:00 2001 From: djfrancesco Date: Mon, 26 Feb 2024 13:58:24 +0100 Subject: [PATCH] chnanged the supported Python versions, added a constraint on the numpy version --- pyproject.toml | 4 ++-- requirements.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 98c79e4..1c1a265 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "edsger" dynamic = ["version"] description = "Graph algorithms in Cython." readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.11" license = {text = "MIT License"} authors = [ { name = "François Pacull", email = "francois.pacull@architecture-performance.fr" }, @@ -26,7 +26,7 @@ classifiers = [ dependencies = [ "setuptools", "setuptools_scm", - "numpy", + "numpy>=1.26", "Cython>=3", "pandas", ] diff --git a/requirements.txt b/requirements.txt index bf738e9..e6853ff 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ # Runtime requirements setuptools setuptools_scm -numpy +numpy>=1.26 Cython>=3 pandas \ No newline at end of file