-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dist_utils is depricated #4668
Comments
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
It looks like the from distutils.spawn import find_executable
>>> from distutils.spawn import find_executable
>>> from shutil import which
>>> find_executable('xmllint')
<stdin>:1: DeprecationWarning: Use shutil.which instead of find_executable
'/Users/mlevy/miniconda3/envs/cupid-dev/bin/xmllint'
>>> which('xmllint')
'/Users/mlevy/miniconda3/envs/cupid-dev/bin/xmllint' (both return |
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
This issue was closed because it has been stalled for 5 days with no activity. |
In utils.py and perhaps in other places we have:
marking the routine as deprecated means it won't fail the pylint test - but it is completly removed in the latest python 3.12. We need to replace all occurances of distutils in cime.
The text was updated successfully, but these errors were encountered: