Skip to content

Commit

Permalink
update bindings variables names and pass the upload flag for nightly …
Browse files Browse the repository at this point in the history
…osx conda builds (#2533)
  • Loading branch information
aclegg3 authored Jan 14, 2025
1 parent ae157a5 commit 05f51dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/install_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions src/esp/bindings/AttributesManagersBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<bool (MgrClass::*)(const AttribsPtr&, const std::string&,
const std::string&, bool) const>(
Expand All @@ -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) {
Expand Down

0 comments on commit 05f51dd

Please sign in to comment.