Skip to content

Commit dbb5412

Browse files
authored
Merge pull request #219 from rapidsai/branch-0.13
[RELEASE] v0.13.0
2 parents 3a99d43 + afe6b8f commit dbb5412

File tree

10 files changed

+21
-20
lines changed

10 files changed

+21
-20
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ concurrency:
2929
jobs:
3030
conda-python-build:
3131
secrets: inherit
32-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.10
32+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
3333
with:
3434
build_type: ${{ inputs.build_type || 'branch' }}
3535
branch: ${{ inputs.branch }}
@@ -40,15 +40,15 @@ jobs:
4040
upload-conda:
4141
needs: conda-python-build
4242
secrets: inherit
43-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.10
43+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.02
4444
with:
4545
build_type: ${{ inputs.build_type || 'branch' }}
4646
branch: ${{ inputs.branch }}
4747
date: ${{ inputs.date }}
4848
sha: ${{ inputs.sha }}
4949
wheel-build:
5050
secrets: inherit
51-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.10
51+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
5252
with:
5353
build_type: ${{ inputs.build_type || 'branch' }}
5454
branch: ${{ inputs.branch }}
@@ -60,10 +60,11 @@ jobs:
6060
wheel-publish:
6161
needs: wheel-build
6262
secrets: inherit
63-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.10
63+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
6464
with:
6565
build_type: ${{ inputs.build_type || 'branch' }}
6666
branch: ${{ inputs.branch }}
6767
sha: ${{ inputs.sha }}
6868
date: ${{ inputs.date }}
6969
package-name: jupyterlab-nvdashboard
70+
publish_to_pypi: true

.github/workflows/pr.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,30 @@ jobs:
1818
- wheel-build
1919
- wheel-tests
2020
secrets: inherit
21-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.10
21+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02
2222
checks:
2323
secrets: inherit
24-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.10
24+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02
2525
conda-python-build:
2626
needs: checks
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.10
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
2929
with:
3030
build_type: pull-request
3131
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
3232
matrix_filter: map(select(.ARCH == "amd64")) | max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]) | [.]
3333
conda-python-tests:
3434
needs: conda-python-build
3535
secrets: inherit
36-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.10
36+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
3737
with:
3838
build_type: pull-request
3939
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
4040
matrix_filter: map(select(.ARCH == "amd64")) | max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]) | [.]
4141
wheel-build:
4242
needs: checks
4343
secrets: inherit
44-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.10
44+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
4545
with:
4646
build_type: pull-request
4747
# This selects the latest supported Python + CUDA
@@ -50,7 +50,7 @@ jobs:
5050
wheel-tests:
5151
needs: wheel-build
5252
secrets: inherit
53-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.10
53+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
5454
with:
5555
build_type: pull-request
5656
# This selects the latest supported Python + CUDA

.github/workflows/trigger-breaking-change-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
trigger-notifier:
1313
if: contains(github.event.pull_request.labels.*.name, 'breaking')
1414
secrets: inherit
15-
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-24.12
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.02
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

ci/build_python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ echo "__version__ = '$version'" > jupyterlab_nvdashboard/_version.py
2828
# TODO: Remove `--no-test` flag once importing on a CPU
2929
# node works correctly
3030
rapids-logger "Building JupyterLab NVDashboard conda package"
31-
RAPIDS_PACKAGE_VERSION=${version} rapids-conda-retry mambabuild --no-test conda/recipes/jupyterlab-nvdashboard
31+
RAPIDS_PACKAGE_VERSION=${version} rapids-conda-retry build --no-test conda/recipes/jupyterlab-nvdashboard
3232

3333
rapids-logger "Uploading JupyterLab NVDashboard conda package to S3"
3434
rapids-upload-conda-to-s3 python

conda/environments/all_arch-any.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
- nodejs=18
1111
- pre-commit
1212
- psutil
13-
- pynvml>=11.0.0,<12.0.0a0
13+
- pynvml>=12.0.0,<13.0.0a0
1414
- pytest
1515
- pytest-asyncio
1616
- pytest-jupyter[server]>=0.6.0

conda/recipes/jupyterlab-nvdashboard/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ requirements:
2626
run:
2727
- python >=3.8
2828
- jupyterlab >=4
29-
- pynvml >=11.0.0,<12.0.0a0
29+
- pynvml >=12.0.0,<13.0.0a0
3030
- psutil
3131

3232

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ dependencies:
7272
- output_types: [conda, requirements, pyproject]
7373
packages:
7474
- jupyterlab>=4
75-
- pynvml>=11.0.0,<12.0.0a0
75+
- pynvml>=12.0.0,<13.0.0a0
7676
- psutil
7777
test_python:
7878
common:

jupyterlab_nvdashboard/apps/gpu.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
try:
77
pynvml.nvmlInit()
8-
except pynvml.nvml.NVMLError_LibraryNotFound:
8+
except pynvml.NVMLError_LibraryNotFound:
99
ngpus = 0
1010
gpu_handles = []
1111
else:
@@ -29,12 +29,12 @@
2929
max(sum(i.value.ullVal for i in bw) * 1024**2 for bw in bandwidth)
3030
/ 2
3131
)
32-
except (IndexError, pynvml.nvml.NVMLError_NotSupported):
32+
except (IndexError, pynvml.NVMLError_NotSupported):
3333
nvlink_ver = None
3434
max_bw = []
3535
try:
3636
pci_gen = pynvml.nvmlDeviceGetMaxPcieLinkGeneration(gpu_handles[0])
37-
except (IndexError, pynvml.nvml.NVMLError_NotSupported):
37+
except (IndexError, pynvml.NVMLError_NotSupported):
3838
pci_gen = None
3939

4040

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-nvdashboard",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"description": "A JupyterLab extension for displaying GPU usage dashboards",
55
"keywords": [
66
"jupyter",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
dependencies = [
3232
"jupyterlab>=4",
3333
"psutil",
34-
"pynvml>=11.0.0,<12.0.0a0",
34+
"pynvml>=12.0.0,<13.0.0a0",
3535
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
3636
dynamic = ["version", "description", "authors", "urls", "keywords"]
3737

0 commit comments

Comments
 (0)