Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zain-sohail committed Oct 16, 2023
1 parent 928d411 commit 169c1e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autodoc_tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:
run: mkdir -p $GITHUB_WORKSPACE/docs/tutorial

- name: convert notebooks to rst and save to docs
run: find $GITHUB_WORKSPACE/tutorial -type f -name "*.ipynb" -exec poetry run jupyter-nbconvert --to rst --output-dir $GITHUB_WORKSPACE/tdocs/tutorial {} \;
run: find $GITHUB_WORKSPACE/tutorial -type f -name "*.ipynb" -exec poetry run jupyter-nbconvert --to rst --output-dir $GITHUB_WORKSPACE/docs/tutorial {} \;

- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 'Updating tutorial rsts for docs'
add: $GITHUB_WORKSPACE/docs/tutorial/
add: 'docs/tutorial/'
1 change: 1 addition & 0 deletions tutorial/1 - Binning fake data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"\n",
"import matplotlib.pyplot as plt\n",
"\n",
"\n",
"sys.path.append(\"../\")\n",
"from sed.binning import bin_partition, bin_dataframe"
]
Expand Down

0 comments on commit 169c1e3

Please sign in to comment.