File tree Expand file tree Collapse file tree 1 file changed +25
-10
lines changed
conda/recipes/jupyterlab-nvdashboard Expand file tree Collapse file tree 1 file changed +25
-10
lines changed Original file line number Diff line number Diff line change 1
1
{% set version = environ['RAPIDS_PACKAGE_VERSION'].lstrip('v') %}
2
2
{% set date_string = environ['RAPIDS_DATE_STRING'] %}
3
3
4
+ {% set python_min = "3.8" %}
5
+
6
+
4
7
package :
5
8
name : jupyterlab-nvdashboard
6
9
version : {{ version }}
@@ -11,31 +14,43 @@ source:
11
14
build :
12
15
number : {{ GIT_DESCRIBE_NUMBER }}
13
16
string : py_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
14
- script : python -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv
15
17
noarch : python
18
+ script :
19
+ - {{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv
16
20
17
21
requirements :
18
22
host :
19
- - python >=3.8
23
+ - python {{ python_min }}
24
+ - pip
20
25
- setuptools
21
- - nodejs =18
22
- - hatchling
23
- - hatch-nodejs-version
24
- - hatch-jupyter-builder
26
+ - hatchling >=1.5.0
27
+ - hatch-nodejs-version >=0.3.2
28
+ - hatch-jupyter-builder >=0.5
29
+ - nodejs
30
+ - jupyter-packaging
25
31
- jupyterlab >=4
26
32
run :
27
- - python >=3.8
33
+ - python >={{ python_min }}
28
34
- jupyterlab >=4
29
35
- pynvml >=12.0.0,<13.0.0a0
30
36
- psutil
31
37
32
-
33
38
test :
39
+ requires :
40
+ - python {{ python_min }}
41
+ - pip
42
+ commands :
43
+ - pip check
34
44
imports :
35
45
- jupyterlab_nvdashboard
36
46
37
47
about :
38
48
home : https://rapids.ai
39
- license : BSD-3
40
- summary : ' A JupyterLab extension for displaying dashboards of GPU usage.'
49
+ license : BSD-3-Clause
50
+ license_family : BSD
51
+ license_file : LICENSE.txt
52
+ summary : A JupyterLab extension for displaying dashboards of GPU usage
53
+ description : |
54
+ A JupyterLab extension for displaying dashboards of GPU usage.
55
+ doc_url : https://github.com/rapidsai/jupyterlab-nvdashboard
41
56
dev_url : https://github.com/rapidsai/jupyterlab-nvdashboard
You can’t perform that action at this time.
0 commit comments