Skip to content

Commit 79148f1

Browse files
committed
Upgrade tomli to 2.2.1
1 parent 2845a52 commit 79148f1

File tree

7 files changed

+177
-89
lines changed

7 files changed

+177
-89
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.2.1

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ drop = [
123123
"bin/",
124124
# interpreter and OS specific msgpack libs
125125
"msgpack/*.so",
126+
# optional accelerator extension libraries
127+
"*mypyc*.so",
128+
"tomli/*.so",
126129
# unneeded parts of setuptools
127130
"easy_install.py",
128131
"setuptools",

src/pip/_vendor/tomli/LICENSE-HEADER

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-License-Identifier: MIT
2+
SPDX-FileCopyrightText: 2021 Taneli Hukkinen
3+
Licensed to PSF under a Contributor Agreement.

src/pip/_vendor/tomli/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
# Licensed to PSF under a Contributor Agreement.
44

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

88
from ._parser import TOMLDecodeError, load, loads
9-
10-
# Pretend this exception was created here.
11-
TOMLDecodeError.__module__ = __name__

0 commit comments

Comments
 (0)