From 6929cc6d6ba1b6bda4252832749790ed10e55a71 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sun, 15 Dec 2019 21:22:04 +0530 Subject: [PATCH] Address review comments These were all nitpicks but hey, that's good news. :) --- pyproject.toml | 4 ++-- tox.ini | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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