Unverified Commit fda1efe4 authored by Harrison Saturley-Hall's avatar Harrison Saturley-Hall Committed by GitHub
Browse files

fix: CI is broken with a deprecated dependency on pynvml (#2926)


Signed-off-by: default avatarHarrison Saturley-Hall <hsaturleyhal@nvidia.com>
Signed-off-by: default avataralec-flowers <aflowers@nvidia.com>
Co-authored-by: default avataralec-flowers <aflowers@nvidia.com>
parent 41dacce7
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
accelerate==1.6.0 accelerate==1.6.0
aiofiles aiofiles
...@@ -28,6 +16,7 @@ matplotlib ...@@ -28,6 +16,7 @@ matplotlib
msgspec msgspec
mypy mypy
numpy==1.26.4 # pmdarima is not compatible with numpy 2 numpy==1.26.4 # pmdarima is not compatible with numpy 2
nvidia-ml-py==13.580.65
opentelemetry-api opentelemetry-api
opentelemetry-sdk opentelemetry-sdk
pip pip
...@@ -37,7 +26,6 @@ prometheus-api-client ...@@ -37,7 +26,6 @@ prometheus-api-client
prophet prophet
protobuf==5.29.5 protobuf==5.29.5
pydantic==2.7.1 pydantic==2.7.1
pynvml
pyright pyright
PyYAML PyYAML
scikit-learn scikit-learn
......
...@@ -153,6 +153,7 @@ filterwarnings = [ ...@@ -153,6 +153,7 @@ filterwarnings = [
"ignore:.*unclosed.*socket.*:ResourceWarning", # Ignore unclosed socket warnings "ignore:.*unclosed.*socket.*:ResourceWarning", # Ignore unclosed socket warnings
"ignore:.*unclosed event loop.*:ResourceWarning", # Ignore unclosed event loop warnings "ignore:.*unclosed event loop.*:ResourceWarning", # Ignore unclosed event loop warnings
"ignore:.*Exception ignored in.*:pytest.PytestUnraisableExceptionWarning", # Ignore unraisable exception warnings "ignore:.*Exception ignored in.*:pytest.PytestUnraisableExceptionWarning", # Ignore unraisable exception warnings
"ignore:The pynvml package is deprecated.*:FutureWarning", # Ignore pynvml deprecation warning, temporary until upstream library updates to nvidia-ml-py
] ]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment