From 7f30854117d46c01045c0be67435edb3cdb5db74 Mon Sep 17 00:00:00 2001 From: Patrick Kidger <33688385+patrick-kidger@users.noreply.github.com> Date: Thu, 3 Aug 2023 11:05:12 -0700 Subject: [PATCH] Bump version --- README.md | 2 +- diffrax/__init__.py | 2 +- docs/index.md | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5fea790a..98655ca7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ _From a technical point of view, the internal structure of the library is pretty pip install diffrax ``` -Requires Python 3.9+, JAX 0.4.13+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.10+. +Requires Python 3.9+, JAX 0.4.13+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.11+. ## Documentation diff --git a/diffrax/__init__.py b/diffrax/__init__.py index 9b13acdf..d8aca8d4 100644 --- a/diffrax/__init__.py +++ b/diffrax/__init__.py @@ -93,4 +93,4 @@ ) -__version__ = "0.4.0" +__version__ = "0.4.1" diff --git a/docs/index.md b/docs/index.md index 33416c95..3db6fd1d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ _From a technical point of view, the internal structure of the library is pretty pip install diffrax ``` -Requires Python 3.9+, JAX 0.4.13+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.10+. +Requires Python 3.9+, JAX 0.4.13+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.11+. ## Quick example diff --git a/setup.py b/setup.py index e9424359..908c1d58 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ python_requires = "~=3.9" -install_requires = ["jax>=0.4.13", "equinox>=0.10.10"] +install_requires = ["jax>=0.4.13", "equinox>=0.10.11"] setuptools.setup( name=name,