From af89eaecb726c4e92019adc41d8f130bcda0c011 Mon Sep 17 00:00:00 2001 From: jolaem Date: Tue, 17 Jun 2025 14:09:00 +0100 Subject: [PATCH 1/2] Update numpy and jinja deps to more open Fixes: #74 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9799b11..f349197 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,8 +25,8 @@ dependencies = [ "aiohttp>=3.8.3", "setuptools>=67.7.2", "pre-commit>=3.3.3", - "numpy==1.23.3", - "jinja2==3.1.0" + "numpy>=1.23.3", + "jinja2>=3.1.0" ] [project.optional-dependencies] From 9bc176c0a72a05c04df8c435d2ac979b686e6ac2 Mon Sep 17 00:00:00 2001 From: Joel Greer Date: Wed, 18 Jun 2025 17:37:29 +0100 Subject: [PATCH 2/2] allow numpy and jinja versions to float around more freely --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f349197..82c6122 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "empiarreader" -version = "0.0.16" +version = "0.0.17" description = "EMPIARReader provides utilities to lazily load data from EMPIAR into a machine-learning-friendly dataset format or to locally download the files." readme = "README.md" requires-python = ">=3.8" @@ -25,7 +25,7 @@ dependencies = [ "aiohttp>=3.8.3", "setuptools>=67.7.2", "pre-commit>=3.3.3", - "numpy>=1.23.3", + "numpy>=1.23.3,<2", "jinja2>=3.1.0" ]