Skip to content

Commit

Permalink
fix pandoc installation to newer version as required
Browse files Browse the repository at this point in the history
  • Loading branch information
zain-sohail committed Oct 16, 2023
1 parent 70faafb commit 928d411
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/autodoc_tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: poetry install -E notebook

- name: Install pandoc
run: sudo apt-get install pandoc
run: |
sudo wget https://github.com/jgm/pandoc/releases/download/3.1.8/pandoc-3.1.8-1-amd64.deb
sudo dpkg -i pandoc-3.1.8-1-amd64.deb
# Execute and convert notebooks
- name: execute notebooks
Expand Down
1 change: 0 additions & 1 deletion tutorial/1 - Binning fake data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"\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 928d411

Please sign in to comment.