forked from rapidsai/cugraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.yaml
More file actions
69 lines (63 loc) · 1.91 KB
/
meta.yaml
File metadata and controls
69 lines (63 loc) · 1.91 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright (c) 2018-2023, NVIDIA CORPORATION.
{% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev').lstrip('v') %}
{% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %}
{% set py_version = environ['CONDA_PY'] %}
{% set date_string = environ['RAPIDS_DATE_STRING'] %}
package:
name: cugraph-service-split
source:
git_url: ../../..
outputs:
- name: cugraph-service-client
version: {{ version }}
build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: py{{ py_version }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
about:
home: https://rapids.ai/
license: Apache-2.0
license_family: APACHE
license_file: ../../../LICENSE
summary: cugraph-service client
script: install_cugraph-service-client.sh
requirements:
host:
- pip
- python x.x
run:
- python x.x
- thriftpy2 >=0.4.15
- name: cugraph-service-server
version: {{ version }}
build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: py{{ py_version }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
about:
home: https://rapids.ai/
license: Apache-2.0
license_family: APACHE
license_file: ../../../LICENSE
summary: cugraph-service server
script: install_cugraph-service-server.sh
requirements:
host:
- pip
- python x.x
- setuptools
- wheel
run:
- {{ pin_subpackage('cugraph-service-client', exact=True) }}
- cudf ={{ minor_version }}
- cugraph ={{ minor_version }}
- cupy >=9.5.0,<12.0.0a0
- dask-cuda ={{ minor_version }}
- dask-cudf ={{ minor_version }}
- distributed ==2023.3.2.1
- numpy
- python x.x
- thriftpy2 >=0.4.15
- ucx-py {{ ucx_py_version }}
tests:
imports:
- cugraph_service_server
- cugraph_service_client