Skip to content

Commit

Permalink
Merge branch 'main' into add-sync-job-GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
ankatiyar authored Jan 17, 2024
2 parents 2687934 + 2dd34b4 commit e75468e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/contribution/technical_steering_committee.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ We look for commitment markers who can do the following:
| Name | Organisation |
|----------------------------------------------------------|---------------------------------------------------------------------------------------- |
| [Ahdra Merali](https://github.com/AhdraMeraliQB) | [QuantumBlack, AI by McKinsey](https://www.mckinsey.com/capabilities/quantumblack) |
| [Andrew Mackay](https://github.com/Mackay031) | [QuantumBlack, AI by McKinsey](https://www.mckinsey.com/capabilities/quantumblack) |
| [Ankita Katiyar](https://github.com/ankatiyar) | [QuantumBlack, AI by McKinsey](https://www.mckinsey.com/capabilities/quantumblack) |
| [Antony Milne](https://github.com/antonymilne) | [QuantumBlack, AI by McKinsey](https://www.mckinsey.com/capabilities/quantumblack) |
| [Deepyaman Datta](https://github.com/deepyaman) | [Claypot AI](https://www.claypot.ai) |
Expand Down Expand Up @@ -87,6 +86,7 @@ Kedro was originally designed by [Aris Valtazanos](https://github.com/arisvqb) a

Former core team members with significant contributions include
[Amanda Koh](https://github.com/amandakys),
[Andrew Mackay](https://github.com/Mackay031),
[Andrii Ivaniuk](https://github.com/andrii-ivaniuk),
[Anton Kirilenko](https://github.com/Flid),
[Cvetanka Nechevska](https://github.com/cvetankanechevska),
Expand Down
5 changes: 5 additions & 0 deletions kedro/framework/cli/starters.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,15 +739,20 @@ def _make_cookiecutter_args_and_fetch_template(
if "PySpark" in tools and "Kedro Viz" in tools:
# Use the spaceflights-pyspark-viz starter if both PySpark and Kedro Viz are chosen.
cookiecutter_args["directory"] = "spaceflights-pyspark-viz"
# Ensures we use the same tag version of kedro for kedro-starters
cookiecutter_args["checkout"] = version
elif "PySpark" in tools:
# Use the spaceflights-pyspark starter if only PySpark is chosen.
cookiecutter_args["directory"] = "spaceflights-pyspark"
cookiecutter_args["checkout"] = version
elif "Kedro Viz" in tools:
# Use the spaceflights-pandas-viz starter if only Kedro Viz is chosen.
cookiecutter_args["directory"] = "spaceflights-pandas-viz"
cookiecutter_args["checkout"] = version
elif example_pipeline:
# Use spaceflights-pandas starter if example was selected, but PySpark or Viz wasn't
cookiecutter_args["directory"] = "spaceflights-pandas"
cookiecutter_args["checkout"] = version
else:
# Use the default template path for non PySpark, Viz or example options:
starter_path = template_path
Expand Down

0 comments on commit e75468e

Please sign in to comment.