From b9c1097f14265c725327fb8a49a377837a2b9aea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Mon, 17 Apr 2023 16:42:12 +0200 Subject: [PATCH] Mention `setup.py develop` change in 23.1 changelog (#11973) --- NEWS.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 4ac7fed4a6c..da8c8726a1d 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -22,13 +22,14 @@ Deprecations and Removals means "don't download wheels". (`#11453 `_) - Deprecate ``--build-option`` and ``--global-option``. Users are invited to switch to ``--config-settings``. (`#11859 `_) -- Using ``--config-settings`` with projects that don't have a ``pyproject.toml`` now print +- Using ``--config-settings`` with projects that don't have a ``pyproject.toml`` now prints a deprecation warning. In the future the presence of config settings will automatically enable the default build backend for legacy projects and pass the setttings to it. (`#11915 `_) - Remove ``setup.py install`` fallback when building a wheel failed for projects without ``pyproject.toml``. (`#8368 `_) - When the ``wheel`` package is not installed, pip now uses the default build backend - instead of ``setup.py install`` for project without ``pyproject.toml``. (`#8559 `_) + instead of ``setup.py install`` and ``setup.py develop`` for project without + ``pyproject.toml``. (`#8559 `_) Features --------