Skip to content
Open
Changes from 2 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
10 changes: 5 additions & 5 deletions policy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
notebook~=6.4.3
matplotlib~=3.6.3
pillow~=10.3.0
numpyencoder~=0.3.0
black[jupyter]~=23.0
notebook~=7.5.5
matplotlib~=3.9.4
pillow~=10.4.0
numpyencoder~=0.3.2
black[jupyter]~=25.11.0
Comment on lines +1 to +5
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These dependency bumps make policy/requirements.txt diverge significantly from the pinned versions in the provided conda env files (e.g., environment_linux.yml pins notebook==6.4.12, matplotlib==3.6.3, numpyencoder==0.3.0, black==23.1.0). Since the README recommends either using the env files or doing a manual setup that ends with pip install -r requirements.txt, this mismatch can lead to inconsistent or conflicting environments depending on which path a user follows. Consider either updating the conda environment files to match these versions, or documenting that requirements.txt is intended for a different setup path (and should not be mixed with the env YAMLs).

Suggested change
notebook~=7.5.5
matplotlib~=3.9.4
pillow~=10.4.0
numpyencoder~=0.3.2
black[jupyter]~=25.11.0
notebook==6.4.12
matplotlib==3.6.3
pillow~=10.4.0
numpyencoder==0.3.0
black==23.1.0

Copilot uses AI. Check for mistakes.
Loading