Skip to content
Open
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy==2.2.6
numpy==2.5.3

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Potential Python-version compatibility gap introduced by this bump: NumPy 2.5.3's own release notes state "This release supports Python versions 3.12-3.15," i.e. it drops wheels/support for 3.8-3.11. This repo's setup.cfg still declares python_requires = >=3.8 and lists classifiers for Python 3.8-3.13.

numpy is a direct import in src/sgraph/cypher.py (not merely a transitive dependency of pandas), and it's pinned here as a plain (non-optional) dev/test requirement — unlike spycy-aneeshdurg, which is explicitly commented as optional. So pip install -r requirements.txt would fail outright on Python 3.8-3.11, even though the package still advertises support for those versions.

Since there's no CI matrix in this repo running the test suite across the declared Python versions, this gap wouldn't be caught automatically before merge. Worth either verifying nothing here still needs to run on 3.8-3.11, or holding this bump (or pinning an intermediate numpy version) until the supported-version floor is reconciled.


Generated by Claude Code

pandas==2.3.3
lxml~=6.1.3
Levenshtein==0.27.4
Expand Down
Loading