Replace distutils mkpath deprecated call#120
Closed
isaac-fs wants to merge 2 commits intoHPENetworking:masterfrom
Closed
Replace distutils mkpath deprecated call#120isaac-fs wants to merge 2 commits intoHPENetworking:masterfrom
isaac-fs wants to merge 2 commits intoHPENetworking:masterfrom
Conversation
added 2 commits
March 26, 2026 15:01
distuils was deprecated in Python 3.10, and removed from Python's standard library on Python 3.12. For users using Python 3.12 and higher an error is presented: ModuleNotFoundError: No module named 'distutils' setuptools maps these calls in newer Python versions. Adding this dependency avoids crashes when using topology.
36942dc to
9d6d5d4
Compare
Contributor
Author
|
Closing in favor of #119. |
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.
distuils was deprecated in Python 3.10, and removme from Python's standard library on Python 3.12. For users using Python 3.12+ an error is presented: ModuleNotFoundError: No module named 'distutils'
I had two ways going about this fix. Fixing the call to dist utils, but then I realized we would also need to request plugin implementers to update their own repositories. So the easier and scalable fix was taking advantage that setuptools now wraps distutils via .pth's.