1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
[flake8]
min_python_version = 3.9
ignore= E501, E203, W503, E704
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311, docs
3.12: py312
3.13: py313
3.14: py314
pypy3.9: pypy39
pypy3.10: pypy310
pypy3.11: pypy311
[tox]
envlist =
lint
typing
py{39,310,311,312,313,314,py39,py310,py311}-{crypto,nocrypto}
py{39,310,311,312,313,314}{,-crypto}-mypy
docs
pypi-description
coverage-report
isolated_build = True
labels =
mypy = py{39,310,311,312,313,314}{,-crypto}-mypy
[testenv]
# Build a shared wheel once, rather than building a .tar.gz file
# and forcing each individual tox environment to convert it to a wheel.
package = wheel
wheel_build_env = build_wheel
# Prevent random setuptools/pip breakages like
# https://github.com/pypa/setuptools/issues/1042 from breaking our builds.
setenv =
VIRTUALENV_NO_DOWNLOAD=1
extras =
tests
crypto: crypto
commands = {envpython} -b -m coverage run -m pytest {posargs}
[testenv:docs]
# The tox config must match the ReadTheDocs config.
basepython = python3.11
extras =
docs
crypto
commands =
sphinx-build -n -T -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
sphinx-build -n -T -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
python -m doctest README.rst docs/usage.rst
[testenv:py{39,310,311,312,313,314}{,-crypto}-mypy]
extras =
crypto: crypto
deps =
mypy
set_env =
MYPY_FORCE_COLOR=1
commands =
mypy
[testenv:lint]
basepython = python3.9
extras = dev
passenv = HOMEPATH # needed on Windows
commands = pre-commit run --all-files
[testenv:pypi-description]
basepython = python3.9
skip_install = true
deps =
twine
pip >= 18.0.0
commands =
pip wheel -w {envtmpdir}/build --no-deps .
twine check {envtmpdir}/build/*
[testenv:coverage-report]
basepython = python3.9
skip_install = true
deps = coverage[toml]==7.10.7
commands =
coverage combine
coverage report
|