Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@

All notable changes to this project will be documented in this file.

## [0.16.5] - 2026-02-02

### Bug Fixes

- Compatibility with pandas 3.0 for string coords (Adrian Seyboldt)


### Miscellaneous Tasks

- Update dependencies (Adrian Seyboldt)

- Bump actions/download-artifact from 6 to 7 (dependabot[bot])

- Bump actions/upload-artifact from 5 to 6 (dependabot[bot])

- Require python 3.11 (Adrian Seyboldt)

- Update cargo lock (Adrian Seyboldt)


### Testing

- Fix test failure due to numpy datetime representation (Adrian Seyboldt)


### Ci

- Update macos github runners (Adrian Seyboldt)

- Test and build with python 3.14 (Adrian Seyboldt)


## [0.16.4] - 2025-11-27

### Bug Fixes
Expand Down
71 changes: 43 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nutpie"
version = "0.16.4"
version = "0.16.5"
authors = [
"Adrian Seyboldt <adrian.seyboldt@gmail.com>",
"PyMC Developers <pymc.devs@gmail.com>",
Expand All @@ -25,7 +25,7 @@ nuts-rs = { version = "0.17.3", features = ["zarr", "arrow"] }
numpy = "0.27.0"
rand = "0.9.0"
thiserror = "2.0.3"
rand_chacha = "0.9.0"
rand_chacha = "0.10.0"
rayon = "1.11.0"
anyhow = "1.0.72"
itertools = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "nutpie"
description = "Sample Stan or PyMC models"
authors = [{ name = "PyMC Developers", email = "pymc.devs@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Rust",
Expand Down