Skip to content

Commit

Permalink
update conf.py, kernelspec config
Browse files Browse the repository at this point in the history
Signed-off-by: Niels Bantilan <[email protected]>
  • Loading branch information
cosmicBboy committed Feb 5, 2024
1 parent 8e3721b commit e4a9fac
Show file tree
Hide file tree
Showing 9 changed files with 61 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@


autosummary_generate = True
suppress_warnings = ["autosectionlabel.*"]
suppress_warnings = ["autosectionlabel.*", "myst.header"]
autodoc_typehints = "description"

# The master toctree document.
Expand Down Expand Up @@ -294,6 +294,9 @@
"flytesnacks/**/*",
"examples/**/*",
]
nb_custom_formats = {
".md": ["jupytext.reads", {"fmt": "md:myst"}],
}

# Pattern for removing intersphinx references from source files.
# This should handle cases like:
Expand Down Expand Up @@ -447,6 +450,7 @@ def filter(self, record: logging.LogRecord) -> bool:
"Definition list ends without a blank line",
"autodoc: failed to import module 'awssagemaker' from module 'flytekitplugins'",
"Enumerated list ends without a blank line",
'Unknown directive type "toc".', # need to fix flytesnacks/contribute.md
)

if msg.strip().startswith(filter_out):
Expand Down
7 changes: 7 additions & 0 deletions docs/introduction/core_use_cases/analytics.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_analytics)=

# Analytics
Expand Down
7 changes: 7 additions & 0 deletions docs/introduction/core_use_cases/data_engineering.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_data_engineering)=

# Data Engineering
Expand Down
7 changes: 7 additions & 0 deletions docs/introduction/core_use_cases/machine_learning.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_machine_learning)=

# Machine Learning
Expand Down
7 changes: 7 additions & 0 deletions docs/introduction/flyte_fundamentals/extending_flyte.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_extending_flyte)=

# Extending Flyte
Expand Down
7 changes: 7 additions & 0 deletions docs/introduction/flyte_fundamentals/optimizing_tasks.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_optimizing_tasks)=

# Optimizing Tasks
Expand Down
7 changes: 7 additions & 0 deletions docs/introduction/flyte_fundamentals/run_schedule.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_run_and_schedule)=

# Running and Scheduling Workflows
Expand Down
7 changes: 7 additions & 0 deletions docs/introduction/flyte_fundamentals/tasks_and_workflows.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_tasks_and_workflows)=

# Tasks, Workflows and LaunchPlans
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
kernelspec:
display_name: Python 3
language: python
name: python3
---

(getting_started_visualizing_task_input_and_output)=

# Visualizing task input and output
Expand Down

0 comments on commit e4a9fac

Please sign in to comment.