Skip to content

Commit c4b84e8

Browse files
authored
Merge pull request #45 from NOAA-GSL/staging
fix: update installation step to include MyST parser for Sphinx docum…
2 parents 43d2ce5 + 8ede90a commit c4b84e8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/docs-pages.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ jobs:
2626
with:
2727
python-version: "3.10"
2828

29-
- name: Install Sphinx
29+
- name: Install Sphinx and MyST
3030
run: |
3131
python -m pip install --upgrade pip
32-
pip install sphinx sphinx_rtd_theme
32+
# Install Sphinx, MyST (Markdown support), and RTD theme
33+
pip install sphinx myst-parser sphinx_rtd_theme
3334
pip install -e .
3435
3536
- name: Build Sphinx HTML

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "datavizhub"
3-
version = "0.1.19"
3+
version = "0.1.20"
44
description = "A tool to ingest data from various sources and formats, create imagery or video based on that data, and send the results to various locations for dissemination."
55
authors = ["Eric Hackathorn <eric.j.hackathorn@noaa.gov>"]
66
include = [

0 commit comments

Comments
 (0)