Skip to content

Commit

Permalink
Pass the kedro_init_version to ProjectMetadata (kedro-org#119)
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <deepyaman.datta@utexas.edu>
Signed-off-by: Danny Farah <danny_farah@mckinsey.com>
  • Loading branch information
deepyaman authored and dannyrfar committed Mar 21, 2023
1 parent dd0e923 commit 59a58ae
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
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

0 comments on commit 59a58ae

Please sign in to comment.