Skip to content

Commit

Permalink
Update requirements and make new release.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 704725496
  • Loading branch information
ColCarroll authored and The bayeux Authors committed Dec 10, 2024
1 parent 7fc5a2d commit a47b638
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
-->

## [0.1.15] - 2024-12-10

* Drop Python 3.9 (b/c JAX did)
* Update requirements for new JAX version
* Add nutpie sampler

## [0.1.13] - 2024-08-13

* Prepare for more blackjax API changes.
Expand Down Expand Up @@ -86,7 +92,8 @@ 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.10...HEAD
[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.15...HEAD
[0.1.15]: https://github.com/jax-ml/bayeux/compare/v0.1.15
[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
Expand Down
2 changes: 1 addition & 1 deletion bayeux/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.14'
__version__ = '0.1.15'

# Note: import <name> as <name> is required for names to be exported.
# See PEP 484 & https://github.com/google/jax/issues/7570
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "bayeux-ml"
description = "Stitching together probabilistic models and inference."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [{name = "bayeux authors", email="[email protected]"}]
classifiers = [ # List of https://pypi.org/classifiers/
Expand All @@ -14,9 +14,9 @@ keywords = []
# pip dependencies of the project
# Installed locally with `pip install -e .`
dependencies = [
"jax>=0.4.6",
"jax>=0.4.36",
"tensorflow-probability[jax]>=0.19.0",
"oryx>=0.2.7",
"oryx>=0.2.9",
"arviz",
"optax",
"optimistix",
Expand Down

0 comments on commit a47b638

Please sign in to comment.