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

Pass the kedro_init_version to ProjectMetadata #119

Merged
merged 6 commits into from
Feb 20, 2023
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 kedro-airflow/kedro_airflow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Kedro plugin for running a project with Airflow """
"""Kedro plugin for running a project with Airflow."""

__version__ = "0.5.1"
1 change: 1 addition & 0 deletions kedro-airflow/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ def metadata(cli_runner): # pylint: disable=unused-argument
project_path,
kedro_version,
project_path / "src",
kedro_version,
)
2 changes: 1 addition & 1 deletion kedro-docker/kedro_docker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Kedro plugin for packaging a project with Docker """
"""Kedro plugin for packaging a project with Docker."""

__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion kedro-telemetry/kedro_telemetry/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Kedro Telemetry plugin for collecting Kedro usage data."""
"""Kedro plugin for collecting Kedro usage data."""

__version__ = "0.2.3"
1 change: 1 addition & 0 deletions kedro-telemetry/tests/test_masking.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def fake_metadata(fake_root_dir):
fake_root_dir / REPO_NAME,
kedro_version,
fake_root_dir / REPO_NAME / "src",
kedro_version,
)
return metadata

Expand Down
1 change: 1 addition & 0 deletions kedro-telemetry/tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def fake_metadata(tmp_path):
tmp_path / REPO_NAME,
kedro_version,
tmp_path / REPO_NAME / "src",
kedro_version,
)
return metadata

Expand Down