From 34223b6487987d2b03a429dc3bac570cd5f82e78 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 31 Jan 2024 16:54:55 -0500 Subject: [PATCH 1/3] Drop jinja and wrapt. --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8ce72d518..632fef3d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,14 +22,12 @@ license = {file = "LICENSE"} requires-python = ">=3.8" dependencies = [ "datalad>=0.13.5,!=0.17.3,!=0.17.0,!=0.16.1", - "jinja2 < 3.1", "numpy", "pandas", "pybids", "pyyaml", "scikit-learn", "tqdm", - "wrapt<2,>=1.10", ] dynamic = ["version"] From 00d2a710f619a9fdaee1c78117bef48aece14c51 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 31 Jan 2024 16:58:19 -0500 Subject: [PATCH 2/3] Set other dependencies' versions. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 632fef3d9..5cccaeb28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,11 +22,11 @@ license = {file = "LICENSE"} requires-python = ">=3.8" dependencies = [ "datalad>=0.13.5,!=0.17.3,!=0.17.0,!=0.16.1", - "numpy", - "pandas", - "pybids", + "numpy==1.26.0", + "pandas==2.2.0", + "pybids==0.16.4", "pyyaml", - "scikit-learn", + "scikit-learn==1.4.0", "tqdm", ] dynamic = ["version"] From b16254803d24a962bc88f8aae6b4518dbcc752a5 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 31 Jan 2024 16:59:29 -0500 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5cccaeb28..5d9abf29f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,11 +22,11 @@ license = {file = "LICENSE"} requires-python = ">=3.8" dependencies = [ "datalad>=0.13.5,!=0.17.3,!=0.17.0,!=0.16.1", - "numpy==1.26.0", - "pandas==2.2.0", - "pybids==0.16.4", + "numpy<=1.26.0", + "pandas<=2.2.0", + "pybids<=0.16.4", "pyyaml", - "scikit-learn==1.4.0", + "scikit-learn<=1.4.0", "tqdm", ] dynamic = ["version"]