-
Notifications
You must be signed in to change notification settings - Fork 33
Fix spherical harmonics for new SciPy sph_harm_y API #291
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
Changes from all commits
d2e8bad
90f9599
67fe992
dec6512
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -21,16 +21,15 @@ classifiers = [ | |||||
| 'Intended Audience :: Science/Research', | ||||||
| "Intended Audience :: Education", | ||||||
| "Natural Language :: English", | ||||||
| "Programming Language :: Python :: 3.9", | ||||||
| "Programming Language :: Python :: 3.10", | ||||||
| "Programming Language :: Python :: 3.11", | ||||||
| "Programming Language :: Python :: 3.12", | ||||||
| "Programming Language :: Python :: 3.13", | ||||||
| ] | ||||||
| dependencies = [ | ||||||
| "numpy>=1.16", | ||||||
| "numpy>=1.23.5", | ||||||
| "pytest>=8.0.0", | ||||||
| "scipy>=1.4", | ||||||
| "scipy>=1.15.0", | ||||||
|
||||||
| "scipy>=1.15.0", | |
| "scipy>=1.17.0", |
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.
sph_harm_y first appear on scipy==1.15.0
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.
Python 3.9 is listed in the classifiers but has been removed from the CI testing matrix. Consider removing the "Programming Language :: Python :: 3.9" classifier to match the testing and dependency requirements, as the minimum scipy version 1.15.0 and numpy 1.23.5 may not fully support Python 3.9 or there may be other compatibility reasons for dropping it.
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.
Done!