Skip to content

Commit 33dd68b

Browse files
committed
Merge branch-24.10 into branch-25.02
2 parents 9b03c13 + f0ffc07 commit 33dd68b

8 files changed

+29
-5
lines changed

ci/release/update-version.sh

+3
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ sed_runner "s/${CURRENT_SHORT_TAG}/${NEXT_SHORT_TAG}/g" docs/source/getting_star
113113
sed_runner "s|blob/branch-${CURRENT_SHORT_TAG}|blob/branch-${NEXT_SHORT_TAG}|g" models/model-cards/*.md
114114
sed_runner "s|tree/branch-${CURRENT_SHORT_TAG}|tree/branch-${NEXT_SHORT_TAG}|g" models/model-cards/*.md
115115

116+
# thirdparty
117+
sed_runner "s|tree/branch-${CURRENT_SHORT_TAG}|tree/branch-${NEXT_SHORT_TAG}|g" thirdparty/README.md
118+
116119
# Update the version of the Morpheus model container
117120
# We need to update several files, however we need to avoid symlinks as well as the build and .cache directories
118121
DOCS_MD_FILES=$(find -P ./docs/source/ -type f -iname "*.md")

conda/environments/all_cuda-125_arch-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ dependencies:
6666
- libtool
6767
- libwebp=1.3.2
6868
- libzlib >=1.3.1,<2
69-
- mlflow
69+
- mlflow>=2.10.0,<2.18
7070
- mrc=25.02
7171
- myst-parser=0.18.1
7272
- nbsphinx

conda/environments/dev_cuda-125_arch-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ dependencies:
5656
- libtool
5757
- libwebp=1.3.2
5858
- libzlib >=1.3.1,<2
59-
- mlflow
59+
- mlflow>=2.10.0,<2.18
6060
- mrc=25.02
6161
- myst-parser=0.18.1
6262
- nbsphinx

conda/environments/examples_cuda-125_arch-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- jsonpatch>=1.33
3030
- kfp
3131
- libwebp=1.3.2
32-
- mlflow
32+
- mlflow>=2.10.0,<2.18
3333
- mrc=25.02
3434
- networkx=2.8.8
3535
- newspaper3k=0.2

conda/environments/runtime_cuda-125_arch-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies:
2626
- grpcio
2727
- grpcio-status
2828
- libwebp=1.3.2
29-
- mlflow
29+
- mlflow>=2.10.0,<2.18
3030
- mrc=25.02
3131
- networkx=2.8.8
3232
- numpydoc=1.5

dependencies.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ dependencies:
376376
- grpcio
377377
- grpcio-status
378378
# - libwebp=1.3.2 # Required for CVE mitigation: https://nvd.nist.gov/vuln/detail/CVE-2023-4863 ##
379-
- mlflow #>=2.10.0,<3
379+
- mlflow>=2.10.0,<2.18 # Pin version to avoid breaking change in 2.18 to thread local variable code commit id: 5541888
380380
- mrc=25.02
381381
- networkx=2.8.8
382382
- numpydoc=1.5

docker/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ COPY --from=git_clone "/tmp/morpheus_repo/examples" "./examples"
363363
COPY --from=git_clone "/tmp/morpheus_repo/scripts" "./scripts"
364364
COPY --from=git_clone "/tmp/morpheus_repo/*.md" "./"
365365
COPY --from=git_clone "/tmp/morpheus_repo/LICENSE" "./"
366+
COPY --from=git_clone "/tmp/morpheus_repo/thirdparty" "./thirdparty"
366367

367368
RUN /opt/conda/bin/conda clean -afy && \
368369
# Ensure the conda-bld directory is indexed even if empty

thirdparty/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!--
2+
SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3+
SPDX-License-Identifier: Apache-2.0
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
-->
17+
18+
# Source Code for OSS Packages in the NVIDIA Morpheus Docker container
19+
20+
The source code for OSS packages which are included in the NVIDIA Morpheus Docker image is available at [https://github.com/nv-morpheus/morpheus_third_party_oss/tree/branch-24.10](https://github.com/nv-morpheus/morpheus_third_party_oss/tree/branch-24.10)

0 commit comments

Comments
 (0)