blob: e2dcdaed3d2089b13d7e775f7309692b236866e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
cython==0.29.24
wheel<0.37.1
setuptools<49.2.0
hypothesis==6.15.0
pytest==6.2.4
pytz==2021.1
pytest-cov==2.12.1
pickle5; python_version == '3.7' and platform_python_implementation != 'PyPy'
# for numpy.random.test.test_extending
cffi
# For testing types. Notes on the restrictions:
# - Mypy relies on C API features not present in PyPy
# - There is no point in installing typing_extensions without mypy
mypy==0.910; platform_python_implementation != "PyPy"
typing_extensions==3.10.0.0; platform_python_implementation != "PyPy"
|