-
Notifications
You must be signed in to change notification settings - Fork 78
/
dependencies.yaml
84 lines (84 loc) · 1.65 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
# Dependency list for https://github.com/rapidsai/dependency-file-generator
files:
all:
output: conda
matrix:
arch: ['any']
includes:
- build_wheels
- checks
- py_version
- run
- test_python
test_python:
output: none
includes:
- py_version
- test_python
checks:
output: none
includes:
- checks
- py_version
py_build:
output: pyproject
pyproject_dir: ./
extras:
table: build-system
includes:
- build_wheels
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_python
channels:
- rapidsai
- rapidsai-nightly
- conda-forge
- nvidia
dependencies:
build_wheels:
common:
- output_types: pyproject
packages:
- hatchling>=1.5.0
- jupyterlab>=4.0.0,<5
- hatch-nodejs-version>=0.3.2
checks:
common:
- output_types: [conda, requirements]
packages:
- pre-commit
- jupyterlab>=4
- nodejs=18
py_version:
common:
- output_types: conda
packages:
- python>=3.8
run:
common:
- output_types: [conda, requirements, pyproject]
packages:
- jupyterlab>=4
- pynvml
- psutil
test_python:
common:
- output_types: [conda, requirements, pyproject]
packages:
- pytest
- pytest-jupyter[server]>=0.6.0
- pytest-asyncio
- websockets