-
-
Notifications
You must be signed in to change notification settings - Fork 341
/
test-requirements.in
38 lines (35 loc) · 1007 Bytes
/
test-requirements.in
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
# For tests
pytest >= 5.0 # for faulthandler in core
coverage >= 7.2.5
async_generator >= 1.9
pyright
pyOpenSSL >= 22.0.0 # for the ssl + DTLS tests
trustme # for the ssl + DTLS tests
pylint # for pylint finding all symbols tests
jedi; implementation_name == "cpython" # for jedi code completion tests
cryptography>=41.0.0 # cryptography<41 segfaults on pypy3.10
# Tools
black; implementation_name == "cpython"
mypy # Would use mypy[faster-cache], but orjson has build issues on pypy
orjson; implementation_name == "cpython"
ruff >= 0.6.6
astor # code generation
uv >= 0.2.24
codespell
# https://github.com/python-trio/trio/pull/654#issuecomment-420518745
mypy-extensions
typing-extensions
types-cffi
types-pyOpenSSL
# annotations in doc files
types-docutils
sphinx
# Trio's own dependencies
cffi; os_name == "nt"
attrs >= 23.2.0
sortedcontainers
idna
outcome
sniffio
# 1.2.1 fixes types
exceptiongroup >= 1.2.1; python_version < "3.11"