Closed zacharyburnett closed 1 year ago
@zacharyburnett would it be possible, or make sense, to remove the line @pllim and I are talking about in #279? It would be nice to see if the tests are still passing once that is removed. Thanks!
LGTM. Yes, Python 3.7 has reached EOL and should be removed, which you did.
And yes, would be nice to remove oldest-supported-numpy though it is technically out of scope here. Depends on how many PRs you feel like opening today. Has to be done, but can be here or a follow-up.
sure, I'll remove oldest-supported-numpy
(not sure why I added it in the first place, sorry), and see
Ok, this looks ready to me
Boom, still passing. Thank you @zacharyburnett
A grep like this in root dir should smoke most of them out.
grep -ri python . | grep "3\.7"
Numpy also dropped supporting Python 3.8 in new versions; should the required Python version in pyproject.toml
also be updated?
https://github.com/spacetelescope/pysiaf/blob/f49b529e6544f2f5661f20636481029d69db9aa5/pyproject.toml#L4
There is also a reference in README.md
:
https://github.com/spacetelescope/pysiaf/blob/f49b529e6544f2f5661f20636481029d69db9aa5/README.md?plain=1#L136
Numpy also dropped supporting Python 3.8 in new versions
Then Python 3.8 would pick up an older numpy. Up to you whether you want to drop it or not here, but you do not have to. Though I think astropy also dropped it for upcoming v6.
use
pip install .[test]
@mfixstsci