Update dependencies - #104
Merged
Merged
Conversation
added 8 commits
April 12, 2026 19:26
- pyo3: 0.22 -> 0.28.3 (major API changes) - numpy: 0.22 -> 0.28 - netcdf: 0.10.5 -> 0.12 (get_into argument order changed) - ndarray-stats: 0.6 -> 0.7 (min/max methods removed) Key migrations: - PyObject -> Py<PyAny> type alias removed in pyo3 0.28 - into_py() -> into_pyobject() with Bound API - from_slice_bound() -> from_slice() in numpy - new_bound() -> new() for PyDict - import_bound() -> import() - netcdf get_into(data.view_mut(), ..) argument order swap - ndarray 0.17 removes min()/max() on arrays, replaced with fold() patterns
- Replace value.downcast::<T>() with value.cast::<T>() - Remove #[allow(deprecated)] attributes since they're no longer needed
enterpolation 0.2 -> 0.3: - Replace Generator import with Signal trait - Replace model.sample() with model.sample() using Signal trait - Use Linear::builder() instead of enterpolation::linear::Linear::builder() ndarray 0.16 -> 0.17: - Required to avoid duplicate ndarray versions with enterpolation 0.3 - Updated fold() patterns to work with ndarray 0.17
erikmannerfelt
force-pushed
the
update-deps
branch
from
April 12, 2026 20:42
019c89f to
33544b2
Compare
…to testing python building in PRs on macos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
These rust packages are updated:
This (especially pyo3 and ndarray) required quite substantial code changes.
The nix flake is also running a newer nixpkgs.