diff --git a/pyproject.toml b/pyproject.toml index 645d54a7550..01fae701523 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,8 +30,8 @@ patches-dir = "tools/automation/vendoring/patches" [tool.vendoring.transformations] substitute = [ # pkg_resource's vendored packages are directly vendored in pip. - { match='pkg_resources\.extern', replace='pip._vendor' }, - { match='from \.extern', replace='from pip._vendor' }, + { match='pkg_resources\.extern', replace="pip._vendor" }, + { match='from \.extern', replace="from pip._vendor" }, ] drop = [ # contains unnecessary scripts diff --git a/tox.ini b/tox.ini index 5f9b6f4284b..6be97232065 100644 --- a/tox.ini +++ b/tox.ini @@ -52,7 +52,7 @@ basepython = python3.8 skip_install = True commands_pre = deps = - vendoring == 0.2.2 + vendoring==0.2.2 # Required, otherwise we interpret --no-binary :all: as # "do not build wheels", which fails for PEP 517 requirements pip>=19.3.1