forked from rapidsai/legate-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.yaml
138 lines (138 loc) · 3.01 KB
/
dependencies.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Dependency list for https://github.com/rapidsai/dependency-file-generator
files:
all:
output: conda
matrix:
cuda: ["12.2"]
includes:
- build
- build_tools
- cuda_version
- docs
- py_version
- run
- test
py_build:
output: pyproject
pyproject_dir: .
extras:
table: build-system
includes:
- build
py_docs:
output: none
includes:
- docs
- py_version
- run
py_run:
output: pyproject
pyproject_dir: .
extras:
table: project
includes:
- run
py_test:
output: pyproject
pyproject_dir: .
extras:
table: project.optional-dependencies
key: test
includes:
- test
test_python:
output: none
includes:
- py_version
- test
channels:
- legate
- conda-forge
- nvidia
dependencies:
build:
common:
- output_types: [conda]
packages:
- cuda-cudart-dev
- libcublas-dev
- openblas
- output_types: [conda, pyproject, requirements]
packages:
- cmake>=3.24.0,!=3.30.0
- &legate_core legate-core==24.06.*,>=24.06.01
- ninja>=1.11.1.1
- scikit-build>=0.18.0
- setuptools>=70.0
build_tools:
common:
- output_types: [conda]
packages:
- cuda-nvcc
- python-build>=1.2.0
# NOTE: '>=' constraints are used here because some dependencies of
# cunumeric have very tight cuda-version pins, e.g. libcusolver
cuda_version:
specific:
- output_types: conda
matrices:
- matrix:
cuda: "12.2"
packages:
- cuda-version>=12.2
- matrix:
cuda: "12.5"
packages:
- cuda-version>=12.5
docs:
common:
- output_types: [conda, pyproject, requirements]
packages:
- myst-parser
- pydata-sphinx-theme
- sphinx
- output_types: [conda]
packages:
- make
py_version:
specific:
- output_types: conda
matrices:
- matrix:
py: "3.10"
packages:
- python=3.10
- matrix:
py: "3.11"
packages:
- python=3.11
- matrix:
py: "3.12"
packages:
- &latest_python python=3.12
- matrix:
packages:
- *latest_python
run:
common:
- output_types: [conda, pyproject, requirements]
packages:
- numpy
- scikit-learn
- typing-extensions>=4.0
- output_types: [conda, pyproject, requirements]
packages:
- cunumeric==24.06.*,>=24.06.01
- *legate_core
test:
common:
- output_types: [conda, pyproject, requirements]
packages:
- hypothesis
- matplotlib
- mypy
- nbconvert
- notebook
- pytest<8
- seaborn
- xgboost