[pre-commit.ci] pre-commit autoupdate#552
Conversation
03a9ac4 to
36a1afd
Compare
29f6467 to
be87edc
Compare
3691939 to
33085c6
Compare
updates: - [github.com/psf/black-pre-commit-mirror: 25.11.0 → 26.5.1](psf/black-pre-commit-mirror@25.11.0...26.5.1) - [github.com/pycqa/isort: 7.0.0 → 9.0.0a3](PyCQA/isort@7.0.0...9.0.0a3) - [github.com/editorconfig-checker/editorconfig-checker: v3.6.0 → v3.7.0](editorconfig-checker/editorconfig-checker@v3.6.0...v3.7.0) - [github.com/python-jsonschema/check-jsonschema: 0.35.0 → 0.37.2](python-jsonschema/check-jsonschema@0.35.0...0.37.2) - [github.com/rhysd/actionlint: v1.7.9 → v1.7.12](rhysd/actionlint@v1.7.9...v1.7.12)
8e936e7 to
42fa237
Compare
for more information, see https://pre-commit.ci
|
I dug into the tox failures on this PR. The failures are confined to the The failing jobs are installing the latest
This looks unrelated to the pre-commit/rfc822 formatting changes in the PR. The A minimal fix is to cap the chardet factor to the major version the current expectations are compatible with: diff --git a/tox.ini b/tox.ini
index 3440a1b01..d75442946 100644
--- a/tox.ini
+++ b/tox.ini
@@ -57,7 +57,7 @@ extras =
passenv = CI
deps =
-r requirements/test/requirements.txt
- chardet: chardet
+ chardet: chardet<6
commands =
coverage run -m pytest {posargs:}I verified the affected tests locally against the installed PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 PYTHONPATH=. python -m pytest -q tests/test_ill_formed.py tests/test_encoding.py
# 219 passed in 0.19s
git diff --check
# no outputI could not run the full tox matrix in this environment because |
updates: