From 692f88fc0f766de55283cbde0c4aa301c496fe04 Mon Sep 17 00:00:00 2001 From: Dayanne Fernandes Date: Fri, 13 Dec 2024 14:57:33 -0300 Subject: [PATCH 1/3] bump protobuf to 3.20.3 --- .github/workflows/backend-pplnn.yml | 2 +- requirements/runtime.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend-pplnn.yml b/.github/workflows/backend-pplnn.yml index 399bd499b0..a2c15f55b9 100644 --- a/.github/workflows/backend-pplnn.yml +++ b/.github/workflows/backend-pplnn.yml @@ -70,7 +70,7 @@ jobs: id: badge_status run: | python -m pip install torch==1.8.2 torchvision==0.9.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cpu - python -m pip install mmcv-lite protobuf==3.20.2 + python -m pip install mmcv-lite protobuf==3.20.3 python tools/scripts/build_ubuntu_x64_pplnn.py 8 python -c 'import mmdeploy.apis.pplnn as pplnn_api; assert pplnn_api.is_available()' - name: create badge diff --git a/requirements/runtime.txt b/requirements/runtime.txt index 795676ee6a..5587508732 100644 --- a/requirements/runtime.txt +++ b/requirements/runtime.txt @@ -6,6 +6,6 @@ multiprocess numpy onnx>=1.13.0 prettytable -protobuf<=3.20.2 +protobuf<=3.20.3 six terminaltables From 335ce7ae07a02266f72169ce48ab023db0fe8e4d Mon Sep 17 00:00:00 2001 From: Dayanne Fernandes Date: Fri, 13 Dec 2024 15:18:21 -0300 Subject: [PATCH 2/3] set max onnx versionm --- requirements/runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/runtime.txt b/requirements/runtime.txt index 5587508732..b8d1fde97f 100644 --- a/requirements/runtime.txt +++ b/requirements/runtime.txt @@ -4,7 +4,7 @@ matplotlib mmengine multiprocess numpy -onnx>=1.13.0 +onnx>=1.13.0,<=1.16.2 prettytable protobuf<=3.20.3 six From c9962155b9ff389fad720aea5045fb5940c53116 Mon Sep 17 00:00:00 2001 From: Dayanne Fernandes Date: Fri, 13 Dec 2024 15:57:22 -0300 Subject: [PATCH 3/3] bump version --- mmdeploy/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmdeploy/version.py b/mmdeploy/version.py index e0f9e6e520..dbe0ceb527 100644 --- a/mmdeploy/version.py +++ b/mmdeploy/version.py @@ -1,7 +1,7 @@ # Copyright (c) OpenMMLab. All rights reserved. from typing import Tuple -__version__ = '1.3.1' +__version__ = '1.3.2' short_version = __version__