Skip to content

Commit

Permalink
fix max jax and scipy version as fail
Browse files Browse the repository at this point in the history
  • Loading branch information
fhchl committed Apr 15, 2024
1 parent fa585ef commit 12a3756
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"}]
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 = "[email protected]" }]
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",
Expand Down

0 comments on commit 12a3756

Please sign in to comment.