File tree 3 files changed +12
-5
lines changed
3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
21
21
22
22
-->
23
23
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
+
24
30
## [ 0.1.13] - 2024-08-13
25
31
26
32
* Prepare for more blackjax API changes.
@@ -86,7 +92,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
86
92
87
93
### Initial release
88
94
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
90
97
[ 0.1.10 ] : https://github.com/jax-ml/bayeux/releases/tag/v0.1.10
91
98
[ 0.1.9 ] : https://github.com/jax-ml/bayeux/releases/tag/v0.1.9
92
99
[ 0.1.8 ] : https://github.com/jax-ml/bayeux/releases/tag/v0.1.8
Original file line number Diff line number Diff line change 16
16
17
17
# A new PyPI release will be pushed everytime `__version__` is increased
18
18
# When changing this, also update the CHANGELOG.md
19
- __version__ = '0.1.14 '
19
+ __version__ = '0.1.15 '
20
20
21
21
# Note: import <name> as <name> is required for names to be exported.
22
22
# See PEP 484 & https://github.com/google/jax/issues/7570
Original file line number Diff line number Diff line change 2
2
name = " bayeux-ml"
3
3
description = " Stitching together probabilistic models and inference."
4
4
readme = " README.md"
5
- requires-python = " >=3.9 "
5
+ requires-python = " >=3.10 "
6
6
license = {file = " LICENSE" }
7
7
authors = [{
name =
" bayeux authors" ,
email =
" [email protected] " }]
8
8
classifiers = [ # List of https://pypi.org/classifiers/
@@ -14,9 +14,9 @@ keywords = []
14
14
# pip dependencies of the project
15
15
# Installed locally with `pip install -e .`
16
16
dependencies = [
17
- " jax>=0.4.6 " ,
17
+ " jax>=0.4.36 " ,
18
18
" tensorflow-probability[jax]>=0.19.0" ,
19
- " oryx>=0.2.7 " ,
19
+ " oryx>=0.2.9 " ,
20
20
" arviz" ,
21
21
" optax" ,
22
22
" optimistix" ,
You can’t perform that action at this time.
0 commit comments