Skip to content

Commit 0c56441

Browse files
bringhurstjeffwidman
authored andcommitted
chore: migrate to tox 4.x
tox-wheel is a deprecated package. tox 4.x includes wheel support.
1 parent f71da5f commit 0c56441

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install required dependencies
3737
run: |
3838
python3 -m pip install --upgrade pip
39-
pip install tox tox-wheel
39+
pip install tox
4040
4141
- name: Code check
4242
run: tox -e ${TOX_VENV}

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[tox]
2-
minversion = 3.24.1
2+
minversion = 4.3.4
33
requires=
44
virtualenv>=20.7.2
5-
tox-wheel>=0.6.0
65
skip_missing_interpreters=True
76
envlist =
87
pep8,black,
@@ -31,12 +30,14 @@ extras =
3130
deps =
3231
sasl: kerberos
3332
codecov: codecov
33+
allowlist_externals =
34+
{toxinidir}/ensure-zookeeper-env.sh
35+
{toxinidir}/init_krb5.sh
3436
commands =
3537
sasl: {toxinidir}/init_krb5.sh {envtmpdir}/kerberos \
36-
/{toxinidir}/ensure-zookeeper-env.sh \
38+
{toxinidir}/ensure-zookeeper-env.sh \
3739
pytest {posargs: -ra -v --cov-report=xml --cov=kazoo kazoo/tests}
3840

39-
4041
[testenv:build]
4142

4243
[testenv:codecov]

0 commit comments

Comments
 (0)