Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace ordered_set with dict #4574

Merged
merged 3 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions newsfragments/4574.removal.rst
Original file line number Diff line number Diff line change
@@ -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.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ ssl = []
certs = []
core = [
"packaging>=24",
"ordered-set>=3.1.1",
"more_itertools>=8.8",
"jaraco.text>=3.7",
"importlib_resources>=5.10.2; python_version < '3.9'",
Expand Down
1 change: 0 additions & 1 deletion setuptools/_vendor/ordered_set-4.1.0.dist-info/INSTALLER

This file was deleted.

158 changes: 0 additions & 158 deletions setuptools/_vendor/ordered_set-4.1.0.dist-info/METADATA

This file was deleted.

8 changes: 0 additions & 8 deletions setuptools/_vendor/ordered_set-4.1.0.dist-info/RECORD

This file was deleted.

Empty file.
4 changes: 0 additions & 4 deletions setuptools/_vendor/ordered_set-4.1.0.dist-info/WHEEL

This file was deleted.

Loading
Loading