Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all links from kedro.readthedocs to docs.kedro.org #4069

Merged
merged 2 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ contact_links:
about: Come chat with the community!
url: https://slack.kedro.org/
- name: Documentation
url: https://kedro.readthedocs.io/en/stable/
url: https://docs.kedro.org/en/stable/
about: To learn more about how Kedro works
- name: Website
url: https://kedro.org/
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial/spaceflights_tutorial_faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ DatasetError: An exception occurred when parsing config for Dataset
'data_processing.preprocessed_companies':
Object 'ParquetDataset' cannot be loaded from 'kedro_datasets.pandas'. Please see the
documentation on how to install relevant dependencies for kedro_datasets.pandas.ParquetDataset:
https://kedro.readthedocs.io/en/stable/kedro_project_setup/dependencies.html
https://docs.kedro.org/en/stable/kedro_project_setup/dependencies.html
```

The Kedro Data Catalog is missing [dependencies needed to parse the data](../kedro_project_setup/dependencies.md#install-dependencies-related-to-the-data-catalog). Check that you have [all the project dependencies to `requirements.txt`](./tutorial_template.md#install-project-dependencies) and then call `pip install -r requirements.txt` to install them.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ The `base` folder is for shared configuration, such as non-sensitive and project
WARNING: Please do not put access credentials in the base configuration folder.

## Find out more
You can find out more about configuration from the [user guide documentation](https://kedro.readthedocs.io/en/stable/04_user_guide/03_configuration.html).
You can find out more about configuration from the [user guide documentation](https://docs.kedro.org/en/stable/configuration/index.html).
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Here you can define all your data sets by using simple YAML syntax.
#
# Documentation for this file format can be found in "The Data Catalog"
# Link: https://kedro.readthedocs.io/en/stable/data/data_catalog.html
# Link: https://docs.kedro.org/en/stable/data/data_catalog.html
#
# We support interacting with a variety of data stores including local file systems, cloud, network and HDFS
#
Expand Down Expand Up @@ -37,7 +37,7 @@
#
# The Data Catalog supports being able to reference the same file using two different dataset implementations
# (transcoding), templating and a way to reuse arguments that are frequently repeated. See more here:
# https://kedro.readthedocs.io/en/stable/data/data_catalog.html
# https://docs.kedro.org/en/stable/data/data_catalog.html
#
# This is a data set used by the "Hello World" example pipeline provided with the project
# template. Please feel free to remove it once you remove the example pipeline.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Project settings. There is no need to edit this file unless you want to change values
from the Kedro defaults. For further information, including these default values, see
https://kedro.readthedocs.io/en/stable/kedro_project_setup/settings.html."""
https://docs.kedro.org/en/stable/kedro_project_setup/settings.html."""

# Instantiated project hooks.
# For example, after creating a hooks.py and defining a ProjectHooks class there, do
Expand Down
2 changes: 1 addition & 1 deletion kedro/framework/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def project_groups(self) -> Sequence[click.MultiCommand]:
project and the plugins, then combines them with the built-in ones.
Built-in commands can be overridden by plugins, which can be
overridden by a custom project cli.py.
See https://kedro.readthedocs.io/en/stable/extend_kedro/common_use_cases.html#use-case-3-how-to-add-or-modify-cli-commands
See https://docs.kedro.org/en/stable/extend_kedro/common_use_cases.html#use-case-3-how-to-add-or-modify-cli-commands
on how to add this.
"""
if not self._metadata:
Expand Down
2 changes: 1 addition & 1 deletion kedro/framework/project/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def find_pipelines(raise_errors: bool = False) -> dict[str, Pipeline]: # noqa:
can modify the mapping generated by the ``find_pipelines`` function.

For more information on the pipeline registry and autodiscovery, see
https://kedro.readthedocs.io/en/stable/nodes_and_pipelines/pipeline_registry.html
https://docs.kedro.org/en/stable/nodes_and_pipelines/pipeline_registry.html

Args:
raise_errors: If ``True``, raise an error upon failed discovery.
Expand Down
2 changes: 1 addition & 1 deletion kedro/io/data_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _get_credentials(credentials_name: str, credentials: dict[str, Any]) -> Any:
raise KeyError(
f"Unable to find credentials '{credentials_name}': check your data "
"catalog and credentials configuration. See "
"https://kedro.readthedocs.io/en/stable/kedro.io.DataCatalog.html "
"https://docs.kedro.org/en/stable/api/kedro.io.DataCatalog.html "
"for an example."
) from exc

Expand Down
2 changes: 1 addition & 1 deletion kedro/ipython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def magic_reload_kedro(
) -> None:
"""
The `%reload_kedro` IPython line magic.
See https://kedro.readthedocs.io/en/stable/notebooks_and_ipython/kedro_and_notebooks.html#reload-kedro-line-magic
See https://docs.kedro.org/en/stable/notebooks_and_ipython/kedro_and_notebooks.html#reload-kedro-line-magic
for more.
"""
args = parse_argstring(magic_reload_kedro, line)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Project settings. There is no need to edit this file unless you want to change values
from the Kedro defaults. For further information, including these default values, see
https://kedro.readthedocs.io/en/stable/kedro_project_setup/settings.html."""
https://docs.kedro.org/en/stable/kedro_project_setup/settings.html."""

# Instantiated project hooks.
# For example, after creating a hooks.py and defining a ProjectHooks class there, do
Expand Down