File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ Bug fixes
36
36
~~~~~~~~~
37
37
- Fix plot.line crash for data of shape ``(1, N) `` in _title_for_slice on format_item (:pull: `5948 `).
38
38
By `Sebastian Weigand <https://github.com/s-weigand >`_.
39
+ - Fix a regression in the removal of duplicate backend entrypoints (:issue: `5944 `, :pull: `5959 `)
40
+ By `Kai Mühlbauer <https://github.com/kmuehlbauer >`_.
39
41
40
42
Documentation
41
43
~~~~~~~~~~~~~
@@ -49,6 +51,10 @@ Documentation
49
51
Internal Changes
50
52
~~~~~~~~~~~~~~~~
51
53
54
+ - Use ``importlib `` to replace functionality of ``pkg_resources `` in
55
+ backend plugins tests. (:pull: `5959 `).
56
+ By `Kai Mühlbauer <https://github.com/kmuehlbauer >`_.
57
+
52
58
53
59
.. _whats-new.0.20.1 :
54
60
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ def dummy_duplicated_entrypoints():
49
49
50
50
@pytest .mark .filterwarnings ("ignore:Found" )
51
51
def test_remove_duplicates (dummy_duplicated_entrypoints ) -> None :
52
- entrypoints = plugins .remove_duplicates (dummy_duplicated_entrypoints )
53
52
with pytest .warns (RuntimeWarning ):
54
53
entrypoints = plugins .remove_duplicates (dummy_duplicated_entrypoints )
55
54
assert len (entrypoints ) == 2
You can’t perform that action at this time.
0 commit comments