Updating pseudopy to the recent python ecosystem evolutions#13
Open
nennigb wants to merge 15 commits into
Open
Updating pseudopy to the recent python ecosystem evolutions#13nennigb wants to merge 15 commits into
pseudopy to the recent python ecosystem evolutions#13nennigb wants to merge 15 commits into
Conversation
- collections - log formatter
- Update dependencies versions - Add test optional requirements - Bump version to 1.3.0
- Uniformize 'lanczosinv' (undefined) to 'lanczos' - Add missing 'method' argument in super call
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.
This PR aims at updating
pseudopyto the recent python ecosystem evolutions.This PR contains five kinds of modification:
Shapely v2.0 evolution :
cascaded_unionhas been removed in v2.0.0. https://shapely.readthedocs.io/en/stable/migration.html indicates to useshapely.ops.unary_unioninstead..geomsattribute instead.Matplotlib evolution on contour since v3.8
see https://discourse.matplotlib.org/t/collections-attribute-deprecation-in-version-3-8/24164/7
Numpy v2 evolution
Python packaging evolution (
distutilshas been removed)nose2dependancysetup.pyand usepyproject.tomlto stay closer to new standardshatchlingas build-backend.Hatchlingis developed and maintained by the PyPA (Python Packaging Authority)requirements.txtandMANIFEST.inUpdate tests
nose2Fix missing argument to use lanczos
All tests pass and the CI output can be checked on
https://github.com/nennigb/pseudopy/actions/runs/28940523964
for python 3.11 to 3.14
Let me know if you want that I split the PR or I make some modification.