From a6dd7948189ae42533a288c4d8a7b6df674cccd4 Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Mon, 16 Sep 2019 19:58:54 -0700 Subject: [PATCH] [Projects] Fix template path (#5716) --- BUILD.bazel | 6 +++--- python/setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index dd2d1904b..abe6742b6 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -803,9 +803,9 @@ filegroup( "python/ray/internal/*.py", "python/ray/projects/*.py", "python/ray/projects/schema.json", - "python/ray/projects/template/cluster_template.yaml", - "python/ray/projects/template/project_template.yaml", - "python/ray/projects/template/requirements.txt", + "python/ray/projects/templates/cluster_template.yaml", + "python/ray/projects/templates/project_template.yaml", + "python/ray/projects/templates/requirements.txt", "python/ray/workers/default_worker.py", ]), ) diff --git a/python/setup.py b/python/setup.py index 316a3d6b8..23096c7ca 100644 --- a/python/setup.py +++ b/python/setup.py @@ -47,9 +47,9 @@ ray_autoscaler_files = [ ] ray_project_files = [ - "ray/projects/schema.json", "ray/projects/template/cluster_template.yaml", - "ray/projects/template/project_template.yaml", - "ray/projects/template/requirements.txt" + "ray/projects/schema.json", "ray/projects/templates/cluster_template.yaml", + "ray/projects/templates/project_template.yaml", + "ray/projects/templates/requirements.txt" ] if "RAY_USE_NEW_GCS" in os.environ and os.environ["RAY_USE_NEW_GCS"] == "on":