Skip to content

Commit

Permalink
Major quickstart revamp, maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
marrrcin committed May 4, 2023
1 parent 2e5836b commit 5377f82
Show file tree
Hide file tree
Showing 15 changed files with 429 additions and 211 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## [Unreleased]
- [📝 Docs] Revamp the quickstart guide in documentation
- Refactor `kedro azureml init` command to be more user-friendly
- Add dependency on `kedro-datasets` to prepare for Kedro `0.19.0`; Remove `kedro.datasets.*` imports

## [0.4.0] - 2023-04-28

Expand Down
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

# -- Path setup --------------------------------------------------------------

import datetime as dt

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand All @@ -20,7 +22,7 @@
# -- Project information -----------------------------------------------------

project = "Kedro Azure ML Plugin"
copyright = "2022, GetInData"
copyright = f"{dt.datetime.utcnow().year}, GetInData"
author = "GetInData"

# The full version, including alpha/beta/rc tags
Expand Down Expand Up @@ -58,7 +60,7 @@
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

autodoc_mock_imports = ["azureml", "pandas"]
autodoc_mock_imports = ["azureml", "pandas", "backoff", "cloudpickle"]

# -- Options for HTML output -------------------------------------------------

Expand Down
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Welcome to Kedro Azure ML Pipelines plugin documentation!
Introduction <source/01_intro.md>
Installation <source/02_installation.md>
Quickstart <source/03_quickstart.rst>
Data Assets <source/04_data_assets.rst>
MLflow Integration <source/04_mlflow.rst>
Data Assets <source/05_data_assets.rst>
Development <source/05_development.md>


Expand Down
Loading

0 comments on commit 5377f82

Please sign in to comment.