You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description = Auto-apply style guide to the extent possible
71
+
labels = pre-release
72
+
deps =
73
+
ruff
74
+
skip_install = true
75
+
commands =
76
+
ruff check --fix
77
+
ruff format
78
+
ruff check --select ISC001
79
+
80
+
[testenv:spellcheck]
81
+
description = Check spelling
82
+
labels = check
83
+
deps =
84
+
codespell[toml]
85
+
skip_install = true
86
+
commands =
87
+
codespell . {posargs}
88
+
89
+
[testenv:build{,-strict}]
90
+
labels =
91
+
check
92
+
pre-release
93
+
deps =
94
+
build
95
+
twine
96
+
skip_install = true
97
+
set_env =
98
+
# Ignore specific known warnings:
99
+
# https://github.com/pypa/pip/issues/11684
100
+
# https://github.com/pypa/pip/issues/12243
101
+
strict: PYTHONWARNINGS=error,once:pkg_resources is deprecated as an API.:DeprecationWarning:pip._internal.metadata.importlib._envs,once:Unimplemented abstract methods {'locate_file'}:DeprecationWarning:pip._internal.metadata.importlib._dists
0 commit comments