-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev-requirements.txt
More file actions
45 lines (34 loc) · 1.01 KB
/
dev-requirements.txt
File metadata and controls
45 lines (34 loc) · 1.01 KB
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
45
# Numpy / Pandas are difficult to build in various environments (especially
# FreeBSD), and there are some conflicting requirements. For example, Numpy
# doesn't have any version that works on both Python 3.6 and Python 3.10.
# numpy ~= 1.19.5; python_version <= '3.7'
numpy ~= 1.20.3; python_version == '3.8'
numpy ~= 1.20.3; python_version == '3.9'
numpy >= 2.0.1; python_version > '3.9'
pandas ~= 2.0.3; python_version == '3.9'
pandas ~= 2.0.3; python_version == '3.8'
pandas ~= 1.3.5; python_version == '3.7'
pandas ~= 1.1.5; python_version <= '3.6'
# Need 2.1.2 for numpy 2.0 support
pandas >= 2.1.2; python_version > '3.9'
## Any environment
build
cmake
ninja
setuptools >= 61
wheel
pytest
pytest-runner
pytest-benchmark
# Seems like numpy>2 requires this in combination with pytest,
# but is never set in the requirements.
hypothesis
teamcity-messages == 1.29
setuptools-git == 1.2
# Linting
black==24.10.0; python_version >= '3.9'
black==23.3.0; python_version < '3.9'
# Stubs
mypy
pybind11-stubgen
pandas-stubs