mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-13 19:00:44 -04:00
fix dependency issue related to chardet 6 release
requests wants < 6, but something else installs >= 6, triggering this warning on stderr that breaks our tests: /home/runner/work/borg/borg/.tox/py311-pyfuse3/lib/python3.11/site-packages/requests/__init__.py:113: RequestsDependencyWarning: urllib3 (2.6.3) or chardet (6.0.0dev0)/charset_normalizer (3.4.4) doesn't match a supported version!
This commit is contained in:
parent
a4bfc185df
commit
475b70b7d0
2 changed files with 2 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
chardet==5.2.0
|
||||
setuptools==80.9.0
|
||||
setuptools-scm==9.2.2
|
||||
pip==26.0.1
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
chardet < 6
|
||||
setuptools >=78.1.1
|
||||
setuptools_scm
|
||||
pip !=24.2
|
||||
|
|
|
|||
Loading…
Reference in a new issue