Skip to content

Commit

Permalink
remove submodules in binder build
Browse files Browse the repository at this point in the history
  • Loading branch information
MFA-X-AI committed Feb 21, 2024
1 parent c8fd4b0 commit b7b4e86
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion binder/postBuild
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
#!/bin/sh

cd xai_components
core_dirs="xai_controlflow xai_events xai_template xai_utils"
for dir in */ ; do
case " $core_dirs " in
*\ $dir*)
;;
*)
rm -rf "$dir"
;;
esac
done
cd ..

python -m pip install -U pip
pip install -e .
jupyter labextension develop . --overwrite
jupyter server extension enable xircuits
xircuits list
xircuits list

0 comments on commit b7b4e86

Please sign in to comment.