Add support for Python3.14, drop support for 3.9 and 3.10#826
Open
Add support for Python3.14, drop support for 3.9 and 3.10#826
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Updates dependencies to use the latest versions of pandas, xarray, numpy and scipy. As a result, I've had to drop support for Python 3.9 and 3.10 as these are not supported by the latest package versions. There are also a few syntax changes related to pandas and xarray (in particular, xarray was warning about upcoming changes to some default parameters, so I've set these explicitly to avoid unwanted behaviour changes).
As shown by pandas 3.0, it's likely that any further major version updates to these packages will break things, so I've capped the upper versions to prevent unwanted breakages (e.g. when pandas 4 comes out). Not sure why I wasn't doing this already, to be honest.
Since this is a major breaking change, I'll wait for the next major release (i.e. v1.6.0) to merge this, whenever the time comes.
Fixes #825
Type of change
Key checklist
$ python -m pytest$ python -m sphinx -b html docs docs/buildFurther checks