From 24dae9791fdf81e86614298577d79c4e4b265702 Mon Sep 17 00:00:00 2001 From: MilesCranmerBot Date: Sun, 28 Jun 2026 14:11:57 +0000 Subject: [PATCH 1/2] chore(deps): consolidate Python dependency range widening for release-v1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - juliacall >=0.9.24,<0.9.27 → >=0.9.24,<0.9.36 - beartype >=0.19,<0.22 → >=0.19,<0.23 - jax[cpu] >=0.4,<0.6 → >=0.4,<0.7 - mypy >=1,<2 → >=1,<3 - pytest-cov >=5,<7 → >=5,<8 Closes #1228 Closes #1230 Closes #1232 Closes #1234 Closes #1235 --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 645fe64ce..58c75fea5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ dependencies = [ "pandas>=0.21.0,<4.0.0", "numpy>=1.13.0,<3.0.0", "scikit_learn>=1.0.0,<2.0.0", - "juliacall>=0.9.24,<0.9.27", + "juliacall>=0.9.24,<0.9.36", "click>=7.0.0,<9.0.0", "typing-extensions>=4.0.0,<5.0.0", ] @@ -30,16 +30,16 @@ dependencies = [ [project.optional-dependencies] dev = [ "coverage>=7,<8", - "beartype>=0.19,<0.22", + "beartype>=0.19,<0.23", "ipykernel>=6,<7", "ipython>=8,<9", - "jax[cpu]>=0.4,<0.6", + "jax[cpu]>=0.4,<0.7", "jupyter>=1,<2", - "mypy>=1,<2", + "mypy>=1,<3", "nbval>=0.11,<0.12", "pandas-stubs", "pre-commit>=3.0,<5", - "pytest-cov>=5,<7", + "pytest-cov>=5,<8", "pytest>=8,<9", "tensorboard>=2,<3", "torch>=2,<3", From 61c25c3b13f58d0f0f808a2696f861b006bf0d62 Mon Sep 17 00:00:00 2001 From: MilesCranmerBot Date: Sun, 28 Jun 2026 15:40:06 +0000 Subject: [PATCH 2/2] chore(deps): widen jax upper bound to <0.11 Co-authored-by: Miles Cranmer --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 58c75fea5..a9827794a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dev = [ "beartype>=0.19,<0.23", "ipykernel>=6,<7", "ipython>=8,<9", - "jax[cpu]>=0.4,<0.7", + "jax[cpu]>=0.4,<0.11", "jupyter>=1,<2", "mypy>=1,<3", "nbval>=0.11,<0.12",