Skip to content

Commit

Permalink
chore: add make target for updating encrypted dataframe files
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Apr 22, 2024
1 parent face2b1 commit 17b9327
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -844,3 +844,7 @@ run_all_use_case_examples:
.PHONY: check_utils_use_case # Check that no utils.py are found in use_case_examples
check_utils_use_case:
./script/make_utils/check_utils_in_use_case.sh

.PHONY: update_encrypted_dataframe # Update encrypted data-frame's development files
update_encrypted_dataframe:
poetry run python ./script/make_utils/update_encrypted_dataframe_files.py
6 changes: 6 additions & 0 deletions script/make_utils/update_encrypted_dataframe_files.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""Update the encrypted data-frame's development files."""

from concrete.ml.pandas._development import save_client_server

if __name__ == "__main__":
save_client_server()

0 comments on commit 17b9327

Please sign in to comment.