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
|
# chardet is a dependency of requests. It is optional under
# Python 3 but is used if present. Starting with requests v2.26.0,
# requests depends on charset_normalizer that emits a warning in
# our tests:
# ```
# UserWarning: Trying to detect encoding from a tiny portion
# of (12) byte(s).
# ```
# Ref: https://github.com/psf/requests/commit/2ed84f5
# To avoid the warning, we declare a direct dependency on chardet
# here so that it's use is adjusted across Python 2 and Python 3:
requests[use_chardet_on_py3]
# measure test coverage
coverage >= 6.2
jaraco.context
jaraco.text >= 3.1
portend
pyopenssl
# The pypytools library provides a cross-implementation context
# manager for disabling garbage collection in specific blocks
# of the control flow:
pypytools
pytest-clarity
pytest-cov
pytest-mock >= 1.11.0
pytest-rerunfailures
pytest-sugar >= 0.9.3
pytest-watch == 4.2.0
pytest-xdist >= 1.28.0
pytest >= 7
# HTTP over UNIX socket
requests-unixsocket
requests_toolbelt
# TLS
trustme >= 0.4.0
|