diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2022-02-18 04:04:11 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2022-02-18 04:05:01 +0100 |
commit | 2c4d166ffea7c4670e8c36d7465f5087dfb8da77 (patch) | |
tree | 3b323d940c6ff8f575e29409fc581ec7455b9623 | |
parent | 1168868df63678e5704acd866fafcf40dc849481 (diff) | |
download | numpy-2c4d166ffea7c4670e8c36d7465f5087dfb8da77.tar.gz |
MAINT: point to html docs on distutils migration in deprecation message
[skip azp]
-rw-r--r-- | numpy/distutils/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/__init__.py b/numpy/distutils/__init__.py index 3be3372ff..f74ed4d3f 100644 --- a/numpy/distutils/__init__.py +++ b/numpy/distutils/__init__.py @@ -33,7 +33,8 @@ warnings.warn("\n\n" " of the deprecation of `distutils` itself. It will be removed for\n" " Python >= 3.12. For older Python versions it will remain present.\n" " It is recommended to use `setuptools < 60.0` for those Python versions.\n" - " For more details, see: TODO! \n\n", + " For more details, see:\n" + " https://numpy.org/devdocs/reference/distutils_status_migration.html \n\n", DeprecationWarning, stacklevel=2 ) del warnings |