Skip to content

Commit 8afe0c3

Browse files
authored
Merge pull request #4574 from abravalheri/ordered_set
Replace ordered_set with dict
2 parents 8bd9308 + dbfcf80 commit 8afe0c3

File tree

14 files changed

+13
-724
lines changed

14 files changed

+13
-724
lines changed

newsfragments/4574.removal.rst

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
``setuptools`` is replacing the usages of :pypi:`ordered_set` with simple
2+
instances of ``dict[Hashable, None]``. This is done to remove the extra
3+
dependency and it is possible because since Python 3.7, ``dict`` maintain
4+
insertion order.

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ ssl = []
110110
certs = []
111111
core = [
112112
"packaging>=24",
113-
"ordered-set>=3.1.1",
114113
"more_itertools>=8.8",
115114
"jaraco.text>=3.7",
116115
"importlib_resources>=5.10.2; python_version < '3.9'",

setuptools/_vendor/ordered_set-4.1.0.dist-info/INSTALLER

-1
This file was deleted.

setuptools/_vendor/ordered_set-4.1.0.dist-info/METADATA

-158
This file was deleted.

setuptools/_vendor/ordered_set-4.1.0.dist-info/RECORD

-8
This file was deleted.

setuptools/_vendor/ordered_set-4.1.0.dist-info/REQUESTED

Whitespace-only changes.

setuptools/_vendor/ordered_set-4.1.0.dist-info/WHEEL

-4
This file was deleted.

0 commit comments

Comments
 (0)