Skip to content

Commit

Permalink
So... our vendoring of pep517 wasn't correct. :)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Apr 14, 2020
1 parent a1af9d5 commit 1f74437
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pip/_vendor/pep517/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import argparse
import logging
import os
import toml
from pip._vendor import toml
import shutil

from .envbuild import BuildEnvironment
Expand Down
2 changes: 1 addition & 1 deletion src/pip/_vendor/pep517/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import logging
import os
from os.path import isfile, join as pjoin
from toml import TomlDecodeError, load as toml_load
from pip._vendor.toml import TomlDecodeError, load as toml_load
import shutil
from subprocess import CalledProcessError
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/pip/_vendor/pep517/envbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import os
import logging
import toml
from pip._vendor import toml
import shutil
from subprocess import check_call
import sys
Expand Down

1 comment on commit 1f74437

@pradyunsg
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In fairness, we never actually hit these lines in pip's use of pep517, but that's really besides the point.

Please sign in to comment.