V0.3.1 - #28
Merged
Merged
Conversation
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.
macrotrace has been uninstallable via uv (other envs unaffected) since numpy 2.5.0 landed on PyPI (2026-06-21). Nothing in macrotrace changed during this time.
The numpy requirement had no upper bound, and no released numba supports numpy >= 2.5 (0.66.0, released ten days after numpy 2.5.0, still pins numpy<2.5). darts pulls numba in transitively via shap/pyod. uv prefers the newest numpy, finds it outside every numba's supported range, and backtracks numba rather than numpy down to 0.53.1, the last release whose numpy pin has no ceiling. numba 0.53.1 is from March 2021, supports only Python 3.6-3.9, and has no usable wheel, so uv builds its sdist and setup.py aborts in _guard_py_ver.
The cap lives in [project].dependencies. Verified on a clean venv for Python 3.11, 3.12 and 3.13: resolves to numba 0.66.0 + numpy 2.4.6 with no source build.