Skip to content

Commit ed3e0da

Browse files
ColCarrollThe bayeux Authors
authored and
The bayeux Authors
committed
Update requirements and make new release.
PiperOrigin-RevId: 704710852
1 parent 7fc5a2d commit ed3e0da

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
2121
2222
-->
2323

24+
## [0.1.15] - 2024-12-10
25+
26+
* Drop Python 3.9 (b/c JAX did)
27+
* Update requirements for new JAX version
28+
* Add nutpie sampler
29+
2430
## [0.1.13] - 2024-08-13
2531

2632
* Prepare for more blackjax API changes.
@@ -86,7 +92,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
8692

8793
### Initial release
8894

89-
[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.10...HEAD
95+
[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.15...HEAD
96+
[0.1.15]: https://github.com/jax-ml/bayeux/compare/v0.1.15
9097
[0.1.10]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.10
9198
[0.1.9]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.9
9299
[0.1.8]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.8

bayeux/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# A new PyPI release will be pushed everytime `__version__` is increased
1818
# When changing this, also update the CHANGELOG.md
19-
__version__ = '0.1.14'
19+
__version__ = '0.1.15'
2020

2121
# Note: import <name> as <name> is required for names to be exported.
2222
# See PEP 484 & https://github.com/google/jax/issues/7570

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bayeux-ml"
33
description = "Stitching together probabilistic models and inference."
44
readme = "README.md"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.10"
66
license = {file = "LICENSE"}
77
authors = [{name = "bayeux authors", email="[email protected]"}]
88
classifiers = [ # List of https://pypi.org/classifiers/
@@ -14,9 +14,9 @@ keywords = []
1414
# pip dependencies of the project
1515
# Installed locally with `pip install -e .`
1616
dependencies = [
17-
"jax>=0.4.6",
17+
"jax>=0.4.36",
1818
"tensorflow-probability[jax]>=0.19.0",
19-
"oryx>=0.2.7",
19+
"oryx>=0.2.9",
2020
"arviz",
2121
"optax",
2222
"optimistix",

0 commit comments

Comments
 (0)