Skip to content

Commit

Permalink
Switch to allowlist_externals in tox configuration
Browse files Browse the repository at this point in the history
The old whitelist_externals setting was deprecated for a long time and
got removed in the meantime [1].

[1]: tox-dev/tox#2600
  • Loading branch information
felixedel committed Jan 5, 2024
1 parent 0429489 commit 7885b91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ commands =
python setup.py sdist bdist_wheel

[testenv:update-requirements]
whitelist_externals =
allowlist_externals =
bash
deps =
pipenv
Expand All @@ -35,8 +35,8 @@ commands =
bash -c 'pipenv requirements --dev > "{toxinidir}/test-requirements.txt"'

[testenv:pipenv]
whitelist_externals =
{[testenv:update-requirements]whitelist_externals}
allowlist_externals =
{[testenv:update-requirements]allowlist_externals}
deps =
{[testenv:update-requirements]deps}
commands =
Expand Down

0 comments on commit 7885b91

Please sign in to comment.