Skip to content

Commit 12fda47

Browse files
authored
Merge pull request #6417 from pypa/remove-tomli
chore: remove tomli from vendor
2 parents 0b3bc13 + fcc4f92 commit 12fda47

File tree

12 files changed

+322
-1200
lines changed

12 files changed

+322
-1200
lines changed

Pipfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ colorama= {version = "*", sys_platform = "== 'win32'"}
2222
myst-parser = {extras = ["linkify"], version = "*"}
2323
invoke = "*"
2424
exceptiongroup = "==1.1.0"
25-
tomli = "*"
2625
pyyaml = "==6.0.1"
2726
build = "*"
2827
twine = "*"

Pipfile.lock

Lines changed: 320 additions & 294 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pipenv/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
try:
2222
import tomllib as toml
2323
except ImportError:
24-
from pipenv.vendor import tomli as toml
24+
from pipenv.patched.pip._vendor import tomli as toml
2525

2626
import contextlib
2727

pipenv/utils/toml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
try:
99
import tomllib as toml
1010
except ImportError:
11-
from pipenv.vendor import tomli as toml
11+
from pipenv.patched.pip._vendor import tomli as toml
1212

1313
from pipenv.vendor import tomlkit
1414

pipenv/vendor/tomli/LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

pipenv/vendor/tomli/__init__.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)