From dbfcf800b2d130066319ee6dc54f485ff3a09dc6 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Fri, 16 Aug 2024 15:44:28 +0100 Subject: [PATCH] Add newsfragment --- newsfragments/4574.removal.rst | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 newsfragments/4574.removal.rst diff --git a/newsfragments/4574.removal.rst b/newsfragments/4574.removal.rst new file mode 100644 index 0000000000..17c8f61ec1 --- /dev/null +++ b/newsfragments/4574.removal.rst @@ -0,0 +1,4 @@ +``setuptools`` is replacing the usages of :pypi:`ordered_set` with simple +instances of ``dict[Hashable, None]``. This is done to remove the extra +dependency and it is possible because since Python 3.7, ``dict`` maintain +insertion order.