From 12a3756b65ce2a174584700bf1f876bf49ea54eb Mon Sep 17 00:00:00 2001 From: fhchl Date: Mon, 15 Apr 2024 21:30:13 +0200 Subject: [PATCH] fix max jax and scipy version as fail --- pyproject.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4880ea6..8c7f84e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,20 +3,20 @@ name = "dynax" version = "0.0.2" description = "Dynamical systems with JAX!" readme = "README.rst" -requires-python =">=3.10" -license = {file = "LICENSE"} -authors = [{name = "Franz M. Heuchel", email = "franz.heuchel@pm.me"}] -keywords = ["jax", "dynamical-systems", "system-identification", "linearization"] -urls = {repository = "https://github.com/fhchl/dynax"} -dependencies = ["jax>=0.4.23", "diffrax>=0.5"] +requires-python = ">=3.10" +license = { file = "LICENSE" } +authors = [{ name = "Franz M. Heuchel", email = "franz.heuchel@pm.me" }] +keywords = [ + "jax", + "dynamical-systems", + "system-identification", + "linearization", +] +urls = { repository = "https://github.com/fhchl/dynax" } +dependencies = ["jax<=0.4.23", "diffrax>=0.5", "scipy<=1.12"] [project.optional-dependencies] -dev = [ - "pytest", - "jupyter", - "matplotlib", - "pre-commit", -] +dev = ["pytest", "jupyter", "matplotlib", "pre-commit"] docs = [ "nbsphinx", "sphinx-autobuild",