From 5ca9bc7dcf73d72260486afb28dadf5e532cf657 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 6 Apr 2021 08:57:13 -0400 Subject: [PATCH] Expand changelog around Distribution.entry_points. Closes #300. --- CHANGES.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 7ef6cc22..292c2357 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -111,11 +111,16 @@ v3.6.0 future behavior is invoked and an ``EntryPoints`` is the result. - Construction of entry points using +* #284: Construction of entry points using ``dict([EntryPoint, ...])`` is now deprecated and raises an appropriate DeprecationWarning and will be removed in a future version. +* #300: ``Distribution.entry_points`` now presents as an + ``EntryPoints`` object and access by index is no longer + allowed. If access by index is required, cast to a sequence + first. + v3.5.0 ======