Skip to content

Commit d424ad8

Browse files
Part 2: put prototype/* at root. (skypilot-org#354)
* Part 2: put prototype/* at root. `git mv prototype/* ./` * git rm ./sky/init.py * Remove mentions of prototype/ in workflows
1 parent 4747a53 commit d424ad8

File tree

141 files changed

+5
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+5
-5
lines changed

.github/workflows/pylint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
pip install pylint==2.8.2
3030
# https://github.com/edaniszewski/pylint-quotes
3131
pip install pylint-quotes
32-
pip install "./prototype[all]"
32+
pip install ".[all]"
3333
- name: Analysing the code with pylint
3434
run: |
35-
pylint --load-plugins pylint_quotes prototype/sky
35+
pylint --load-plugins pylint_quotes sky

.github/workflows/pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
python -m pip install --upgrade pip
2626
pip install wheel
27-
pip install "./prototype[all]"
27+
pip install ".[all]"
2828
2929
- name: Run tests with pytest
3030
run: pytest

.github/workflows/yapf.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
pip install yapf==0.32.0
2828
- name: Running yapf
2929
run: |
30-
yapf --diff --style .style.yapf --recursive prototype/ --exclude 'prototype/sky/skylet/ray_patches/**' --exclude 'prototype/sky/skylet/providers/**'
30+
yapf --diff --style .style.yapf --recursive ./ --exclude 'sky/skylet/ray_patches/**' --exclude 'sky/skylet/providers/**'

prototype/LICENSE LICENSE

File renamed without changes.

prototype/MANIFEST.in MANIFEST.in

File renamed without changes.

prototype/README.md README.md

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

prototype/format.sh format.sh

File renamed without changes.
File renamed without changes.

prototype/setup.py setup.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

prototype/sky/cli.py sky/cli.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

prototype/sky/dag.py sky/dag.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

prototype/sky/data/storage.py sky/data/storage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class Storage(object):
9494
source, where the data originally comes from. Power users can specify their
9595
pre-initialized stores if their data is already on the cloud.
9696
97-
Typical Usage: (See prototype/examples/playground/storage_playground.py)
97+
Typical Usage: (See examples/playground/storage_playground.py)
9898
storage = Storage(name='imagenet-bucket', source='~/Documents/imagenet')
9999
100100
# Move data to S3
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

prototype/sky/task.py sky/task.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)