Skip to content

Commit 6929cc6

Browse files
committed
Address review comments
These were all nitpicks but hey, that's good news. :)
1 parent 618b2d8 commit 6929cc6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ patches-dir = "tools/automation/vendoring/patches"
3030
[tool.vendoring.transformations]
3131
substitute = [
3232
# pkg_resource's vendored packages are directly vendored in pip.
33-
{ match='pkg_resources\.extern', replace='pip._vendor' },
34-
{ match='from \.extern', replace='from pip._vendor' },
33+
{ match='pkg_resources\.extern', replace="pip._vendor" },
34+
{ match='from \.extern', replace="from pip._vendor" },
3535
]
3636
drop = [
3737
# contains unnecessary scripts

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ basepython = python3.8
5252
skip_install = True
5353
commands_pre =
5454
deps =
55-
vendoring == 0.2.2
55+
vendoring==0.2.2
5656
# Required, otherwise we interpret --no-binary :all: as
5757
# "do not build wheels", which fails for PEP 517 requirements
5858
pip>=19.3.1

0 commit comments

Comments
 (0)