Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,16 @@ jobs:
- name: Installation and setup
shell: bash -l {0}
run: |
conda install -c conda-forge jupyter papermill
conda install -c conda-forge jupyter papermill hatchling hatch-vcs hatch-jupyter-builder
sudo apt-get install -y $(cat binder/apt.txt)
git clone https://github.com/pyiron/pyiron_core.git
cd pyiron_core
cp pyiron_core/pyiron_nodes/utilities.py .
rm -rf pyiron_core/pyiron_nodes
mkdir pyiron_core/pyiron_nodes
touch pyiron_core/pyiron_nodes/__init__.py
mv utilities.py pyiron_core/pyiron_nodes/utilities.py
pip install . --no-deps --no-build-isolation
- name: Create Additional Conda Environments
shell: bash -l {0}
run: |
Expand All @@ -33,6 +41,7 @@ jobs:
shell: bash -l {0}
run: |
papermill pyiron_base.ipynb pyiron_base_out.ipynb -k "python3"
papermill pyiron_core.ipynb pyiron_core_out.ipynb -k "python3"
papermill pyiron_workflow.ipynb pyiron_workflow_out.ipynb -k "python3"
papermill executorlib.ipynb executorlib_out.ipynb -k "python3"

Expand Down
11 changes: 11 additions & 0 deletions binder/postBuild
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
conda env create -n preprocessing -f source/envs/preprocessing.yaml -y
conda env create -n processing -f source/envs/processing.yaml -y
conda env create -n postprocessing -f source/envs/postprocessing.yaml -y

conda install -c conda-forge hatchling hatch-vcs hatch-jupyter-builder

git clone https://github.com/pyiron/pyiron_core.git
cd pyiron_core
cp pyiron_core/pyiron_nodes/utilities.py .
rm -rf pyiron_core/pyiron_nodes
mkdir pyiron_core/pyiron_nodes
touch pyiron_core/pyiron_nodes/__init__.py
mv utilities.py pyiron_core/pyiron_nodes/utilities.py
pip install . --no-deps --no-build-isolation
3 changes: 2 additions & 1 deletion book/_toc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
format: jb-book
root: README
chapters:
- file: executorlib.ipynb
- file: pyiron_base.ipynb
- file: pyiron_core.ipynb
- file: pyiron_workflow.ipynb
- file: executorlib.ipynb
2,063 changes: 2,062 additions & 1 deletion executorlib.ipynb

Large diffs are not rendered by default.

1,908 changes: 1,907 additions & 1 deletion pyiron_base.ipynb

Large diffs are not rendered by default.

Loading
Loading