-
Notifications
You must be signed in to change notification settings - Fork 1
Update scipy to 1.17.0 #449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,7 +26,7 @@ classifiers = [ | |
| dependencies = [ | ||
| "ase==3.27.0", | ||
| "numpy==2.3.5", | ||
| "scipy==1.16.3", | ||
| "scipy==1.17.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Python version constraint requires update. SciPy 1.17.0 requires Python 3.11-3.14, which conflicts with Line 14's Suggested fix: Update Python version requirement-requires-python = ">=3.10, <3.14"
+requires-python = ">=3.11, <3.14"Also update the classifiers accordingly: - "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",🤖 Prompt for AI Agents |
||
| ] | ||
| dynamic = ["version"] | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: pyiron/structuretoolkit
Length of output: 837
🌐 Web query:
SciPy 1.17.0 Python version requirement💡 Result:
SciPy 1.17.0 requires Python 3.11–3.14 (and NumPy >= 1.26.4). [1][2]
Sources:
[1] SciPy 1.17.0 release notes. [2] SciPy 1.17.0 zenodo release metadata.
🏁 Script executed:
Repository: pyiron/structuretoolkit
Length of output: 1019
🏁 Script executed:
Repository: pyiron/structuretoolkit
Length of output: 5163
Resolve Python version constraint mismatch with SciPy 1.17.0.
SciPy 1.17.0 requires Python 3.11–3.14, but
pyproject.toml(line 14) specifiesrequires-python = ">=3.10, <3.14". Since CI testing only covers Python 3.11+, update the constraint to match:Change
requires-python = ">=3.10, <3.14"torequires-python = ">=3.11, <3.14"Alternatively, if Python 3.10 support is needed, retain SciPy 1.16.x.
🤖 Prompt for AI Agents