From 05f51dda966c8b83c2f5769d4b88a6e81a482c16 Mon Sep 17 00:00:00 2001 From: Alexander Clegg Date: Tue, 14 Jan 2025 13:35:27 -1000 Subject: [PATCH] update bindings variables names and pass the upload flag for nightly osx conda builds (#2533) --- .github/workflows/install_and_test.yml | 2 +- src/esp/bindings/AttributesManagersBindings.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/install_and_test.yml b/.github/workflows/install_and_test.yml index 88dcce6456..44479901a4 100644 --- a/.github/workflows/install_and_test.yml +++ b/.github/workflows/install_and_test.yml @@ -437,5 +437,5 @@ jobs: conda config --set anaconda_upload yes cd conda-build export PYTHONIOENCODING="utf-8" - python matrix_builder.py ${{ env.NIGHTLY }} + python matrix_builder.py --conda_upload ${{ env.NIGHTLY }} fi diff --git a/src/esp/bindings/AttributesManagersBindings.cpp b/src/esp/bindings/AttributesManagersBindings.cpp index fba5f1b89a..898c3dfdbe 100644 --- a/src/esp/bindings/AttributesManagersBindings.cpp +++ b/src/esp/bindings/AttributesManagersBindings.cpp @@ -297,7 +297,7 @@ void declareBaseAttributesManager(py::module& m, "fail with a message if any subdirectories in the requested " "filepath do not exist.") .c_str(), - "handle"_a, "filepath"_a, "create_subdir"_a) + "template"_a, "filepath"_a, "create_subdir"_a) .def("save_template_to_filepath", static_cast( @@ -309,7 +309,7 @@ void declareBaseAttributesManager(py::module& m, "subdirectories in the requested filepath " "subdirectories do not exist.") .c_str(), - "handle"_a, "filepath"_a, "filename"_a, "create_subdir"_a); + "template"_a, "filepath"_a, "filename"_a, "create_subdir"_a); } // declareBaseAttributesManager void initAttributesManagersBindings(py::module& m) {