Fix NumPy 2.0+ compatibility: replace deprecated trapz with trapezoid - #14
Merged
Conversation
Co-authored-by: dfeen87 <158860247+dfeen87@users.noreply.github.com>
Co-authored-by: dfeen87 <158860247+dfeen87@users.noreply.github.com>
dfeen87
marked this pull request as ready for review
February 13, 2026 19:27
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
Copilot
AI
changed the title
[WIP] Fix bugs in program execution
Fix NumPy 2.0+ compatibility: replace deprecated trapz with trapezoid
Feb 13, 2026
Copilot stopped work on behalf of
dfeen87 due to an error
February 13, 2026 19:27
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.
NumPy 2.0 removed the deprecated
np.trapzfunction, causing runtime failures across simulations and analysis modules. All instances replaced withnp.trapezoid.Changes
Core fixes (6 occurrences across 5 files):
theory/dynamics.py- memory kernel integrationanalysis/cp_divisibility.py- BLP measure calculationanalysis/non_markovianity.py- BLP/RHP measure calculations (2×)simulations/resonance_statistics.py- resonance-time weights (2×)Housekeeping:
.gitignorefor__pycache__and build artifactsExample
Function signature and numerical behavior identical - pure compatibility fix.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.