From b51d440b70b6eb7802db1fc2ea205e8ddf7ee461 Mon Sep 17 00:00:00 2001 From: Colin Carroll Date: Wed, 3 Apr 2024 08:53:52 -0700 Subject: [PATCH] Push new python 3.9 compatible version. PiperOrigin-RevId: 621537805 --- CHANGELOG.md | 9 ++++++++- bayeux/__init__.py | 2 +- pyproject.toml | 1 + 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb07ed3..1098ef0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,10 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`): ## [Unreleased] +## [0.1.10] - 2024-04-03 + +### Keep Python 3.9 compatibility. + ## [0.1.9] - 2024-02-27 ### Add programmatic access to algorithms @@ -64,7 +68,10 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`): ### Initial release -[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.7...HEAD +[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.10...HEAD +[0.1.10]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.10 +[0.1.9]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.9 +[0.1.8]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.8 [0.1.7]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.7 [0.1.6]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.6 [0.1.5]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.5 diff --git a/bayeux/__init__.py b/bayeux/__init__.py index a7222ae..b2af432 100644 --- a/bayeux/__init__.py +++ b/bayeux/__init__.py @@ -16,7 +16,7 @@ # A new PyPI release will be pushed everytime `__version__` is increased # When changing this, also update the CHANGELOG.md -__version__ = '0.1.9' +__version__ = '0.1.10' # Note: import as is required for names to be exported. # See PEP 484 & https://github.com/google/jax/issues/7570 diff --git a/pyproject.toml b/pyproject.toml index fa13c9e..69757ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ dependencies = [ "flowmc", "numpyro", "jaxopt", + "scipy<1.13", # https://github.com/arviz-devs/arviz/issues/2336 ] # `version` is automatically set by flit to use `bayeux.__version__`