Skip to content

Commit

Permalink
Upgrade tomli to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ichard26 committed Dec 7, 2024
1 parent 2845a52 commit 79148f1
Show file tree
Hide file tree
Showing 7 changed files with 177 additions and 89 deletions.
1 change: 1 addition & 0 deletions news/tomli.vendor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade tomli to 2.2.1
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ drop = [
"bin/",
# interpreter and OS specific msgpack libs
"msgpack/*.so",
# optional accelerator extension libraries
"*mypyc*.so",
"tomli/*.so",
# unneeded parts of setuptools
"easy_install.py",
"setuptools",
Expand Down
3 changes: 3 additions & 0 deletions src/pip/_vendor/tomli/LICENSE-HEADER
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-License-Identifier: MIT
SPDX-FileCopyrightText: 2021 Taneli Hukkinen
Licensed to PSF under a Contributor Agreement.
5 changes: 1 addition & 4 deletions src/pip/_vendor/tomli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
# Licensed to PSF under a Contributor Agreement.

__all__ = ("loads", "load", "TOMLDecodeError")
__version__ = "2.0.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
__version__ = "2.2.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT

from ._parser import TOMLDecodeError, load, loads

# Pretend this exception was created here.
TOMLDecodeError.__module__ = __name__
Loading

0 comments on commit 79148f1

Please sign in to comment.