From 4bcd5b2175536d93e5bc062350bdea54bfa58bd4 Mon Sep 17 00:00:00 2001 From: Felix Koehler Date: Thu, 2 May 2024 14:44:43 +0200 Subject: [PATCH] Bump required Python version to avoid issues with Equinox --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c88ef36..01e6d4f 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ pip install . ``` -Requires Python 3.9+ and JAX 0.4.13+ (and Equinox & Matplotlib). 👉 [JAX install guide](https://jax.readthedocs.io/en/latest/installation.html). +Requires Python 3.10+ and JAX 0.4.13+ (and Equinox & Matplotlib). 👉 [JAX install guide](https://jax.readthedocs.io/en/latest/installation.html). ## Quickstart diff --git a/pyproject.toml b/pyproject.toml index b46fbb1..df5d6a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "exponax" version = "0.0.1" description = "Efficient differentiable PDE solvers in JAX." readme = "README.md" -requires-python ="~=3.9" +requires-python ="~=3.10" authors = [ {name = "Felix Koehler"}, ]