Updated aiohappyeyeballs v2.4.4 -> v2.6.1 Updated aiosignal v1.3.1 -> v1.3.2 Updated filelock v3.16.1 -> v3.18.0 Updated frozenlist v1.5.0 -> v1.7.0 Updated markupsafe v2.0.1 -> v3.0.2 Updated mozilla-taskgraph v3.3.0 -> v3.3.1 Updated multidict v6.1.0 -> v6.4.4 Updated platformdirs v4.3.6 -> v4.3.8 Updated propcache v0.2.0 -> v0.3.2 Updated requests v2.32.3 -> v2.32.4 Updated types-python-dateutil v2.9.0.20241206 -> v2.9.0.20250516 Updated yarl v1.15.2 -> v1.20.1 Updated zipp v3.20.2 -> v3.23.0 Differential Revision: https://phabricator.services.mozilla.com/D249673
53 lines
1.1 KiB
INI
53 lines
1.1 KiB
INI
[tox]
|
|
envlist =
|
|
py3{13,12,11,10,9}
|
|
pypy310
|
|
style
|
|
typing
|
|
docs
|
|
skip_missing_interpreters = true
|
|
|
|
[testenv]
|
|
package = wheel
|
|
pass_env = PYTHON_GIL
|
|
constrain_package_deps = true
|
|
use_frozen_constraints = true
|
|
deps = -r requirements/tests.txt
|
|
commands = pytest -v --tb=short --basetemp={envtmpdir} {posargs}
|
|
|
|
[testenv:style]
|
|
deps = pre-commit
|
|
skip_install = true
|
|
commands = pre-commit run --all-files
|
|
|
|
[testenv:typing]
|
|
deps = -r requirements/typing.txt
|
|
commands = mypy
|
|
|
|
[testenv:docs]
|
|
deps = -r requirements/docs.txt
|
|
commands = sphinx-build -E -W -b dirhtml docs docs/_build/dirhtml
|
|
|
|
[testenv:update-actions]
|
|
labels = update
|
|
deps = gha-update
|
|
commands = gha-update
|
|
|
|
[testenv:update-pre_commit]
|
|
labels = update
|
|
deps = pre-commit
|
|
skip_install = true
|
|
commands = pre-commit autoupdate -j4
|
|
|
|
[testenv:update-requirements]
|
|
labels = update
|
|
deps = pip-tools
|
|
skip_install = true
|
|
change_dir = requirements
|
|
commands =
|
|
pip-compile build.in -q {posargs:-U}
|
|
pip-compile docs.in -q {posargs:-U}
|
|
pip-compile tests.in -q {posargs:-U}
|
|
pip-compile typing.in -q {posargs:-U}
|
|
pip-compile dev.in -q {posargs:-U}
|