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":