Upgrade specutils
and astropy
dependencies for python > 3.10
#72
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi datalab core developers!
I am working on a package and want to use the datalab queryClient but have been finding the astropy requirements to be too strict for my use case. For example, the astropy affiliated
synphot
package requiresastropy >= 6.1
while the datalab package couldn't haveastropy>=5.4
.I investigated this a little and I think the reasons for these constraints was because astropy changed their API for the VOTable so the tests for the helper.util.convert method were failing and because the
specutils
was not allowingastropy>6
until recently. After installing the newer version of specutils and astropy and fixing the test cases for this package I think everything still appears stable (at least all of the unit tests pass and my code using thequeryClient
works still!).But, I know I may be missing something here for why the astropy version requirement was so strict previously. I look forward to your feedback and working with you on this!