From df5a59e14c72d8e2c7fcd16546df8fb9db892826 Mon Sep 17 00:00:00 2001 From: Junpei Kawamoto Date: Wed, 11 Jan 2023 15:21:39 -0600 Subject: [PATCH] Fix: whitelist_externals was replaced by allowlist_externals tox replaced whitelist_externals with allowlist_externals, and whitelist_externals has been removed. This commit fixes the docs to use the new option. See also: https://tox.wiki/en/3.18.1/changelog.html#v3-18-0-2020-07-23 --- docs/faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/faq.md b/docs/faq.md index 75c08cb6473..5280072037b 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -81,7 +81,7 @@ Thus, dependencies are resolved by `pip`. isolated_build = true [testenv] -whitelist_externals = poetry +allowlist_externals = poetry commands_pre = poetry install --no-root --sync commands = @@ -99,7 +99,7 @@ isolated_build = true [testenv] skip_install = true -whitelist_externals = poetry +allowlist_externals = poetry commands_pre = poetry install commands =