Skip to content

Commit 4317ea2

Browse files
committed
Upgrade tomli to 2.0.0
1 parent 23eae53 commit 4317ea2

File tree

6 files changed

+206
-217
lines changed

6 files changed

+206
-217
lines changed

news/tomli.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade tomli to 2.0.0

src/pip/_vendor/tomli/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
"""A lil' TOML parser."""
22

33
__all__ = ("loads", "load", "TOMLDecodeError")
4-
__version__ = "1.0.3" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
4+
__version__ = "2.0.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
55

66
from pip._vendor.tomli._parser import TOMLDecodeError, load, loads
7+
8+
# Pretend this exception was created here.
9+
TOMLDecodeError.__module__ = __name__

0 commit comments

Comments
 (0)