We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8214dd1 commit 7afc501Copy full SHA for 7afc501
CHANGES.rst
@@ -1,3 +1,22 @@
1
+v4.4.0
2
+=======
3
+
4
+* #300: Restore compatibility in the result from
5
+ ``Distribution.entry_points`` (``EntryPoints``) to honor
6
+ expectations in older implementations and issuing
7
+ deprecation warnings for these cases:
8
9
+ - ``EntryPoints`` objects are once again mutable, allowing
10
+ for ``sort()`` and other list-based mutation operations.
11
+ Avoid deprecation warnings by casting to a
12
+ mutable sequence (e.g.
13
+ ``list(dist.entry_points).sort()``).
14
15
+ - ``EntryPoints`` results once again allow
16
+ for access by index. To avoid deprecation warnings,
17
+ cast the result to a Sequence first
18
+ (e.g. ``tuple(dist.entry_points)[0]``).
19
20
v4.3.1
21
=======
22
0 commit comments