From 0c9906537bba9f87dfa6152845cb12727b6c95a9 Mon Sep 17 00:00:00 2001 From: Taekyung Heo <7621438+TaekyungHeo@users.noreply.github.com> Date: Mon, 7 Oct 2024 13:30:05 -0400 Subject: [PATCH 1/2] Update clangFormatVersion to 16 --- .github/workflows/cpp_lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cpp_lint.yml b/.github/workflows/cpp_lint.yml index 4d1a0985..e4530eda 100644 --- a/.github/workflows/cpp_lint.yml +++ b/.github/workflows/cpp_lint.yml @@ -11,9 +11,9 @@ jobs: uses: actions/checkout@v2 - name: Format and Lint C++ Code - uses: DoozyX/clang-format-lint-action@v0.11 + uses: DoozyX/clang-format-lint-action@v0.18.1 with: source: '.' extensions: 'cc,cpp,h,hh' - clangFormatVersion: 11 + clangFormatVersion: 16 style: file From 4dcb89f3b3a3a31b124586241bc75d388f296491 Mon Sep 17 00:00:00 2001 From: Taekyung Heo <7621438+TaekyungHeo@users.noreply.github.com> Date: Mon, 7 Oct 2024 13:30:33 -0400 Subject: [PATCH 2/2] Update protobuf to 5.* --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 82440e8e..0833e896 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ license = {file = "LICENSE.md"} authors = [ {name = "MLCommons", email = "chakra@mlcommons.org"}, ] -dependencies = ["protobuf==4.*", "graphviz", "networkx", "pydot"] +dependencies = ["protobuf==5.*", "graphviz", "networkx", "pydot"] [project.urls] Homepage = "https://github.com/mlcommons/chakra"