Skip to content

Commit b79d84f

Browse files
committed
Merge branch 'master' of github.com:fastai/fastcore
2 parents 8b63a01 + 60722fd commit b79d84f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
"name": "fastcore-codespaces",
33
"dockerComposeFile": "docker-compose.yml",
44
"settings": {"terminal.integrated.shell.linux": "/bin/bash"},
5+
"workspaceFolder": "/data/",
56
"service": "watcher",
67
"mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ],
78
"forwardPorts": [4000, 8080],
89
"appPort": [4000, 8080],
910
"extensions": ["ms-python.python",
1011
"ms-azuretools.vscode-docker"],
1112
"runServices": ["notebook", "jekyll", "watcher"],
12-
"postStartCommand": "pip install -e ."
13+
"postStartCommand": "cd /data && pip install -e \".[dev]\""
1314
}

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
pip install -Uqq nbdev
8181
cd fastai && pip install -Ue .[dev]
8282
cd ../fastcore && pip install -Ue .[dev]
83-
pip install "sentencepiece<0.1.90" wandb tensorboard albumentations pydicom opencv-python scikit-image pyarrow kornia catalyst captum neptune-cli
83+
pip install "sentencepiece<0.1.90" wandb tensorboard albumentations pydicom opencv-python scikit-image pyarrow kornia catalyst captum neptune-client
8484
8585
- name: check for cache hit
8686
uses: actions/cache@v2

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515

1616
notebook:
1717
<<: *fastai
18-
command: bash -c "pip install -e . && jupyter notebook --allow-root --no-browser --ip=0.0.0.0 --port=8080 --NotebookApp.token='' --NotebookApp.password=''"
18+
command: bash -c "pip install -e \".[dev]\" && jupyter notebook --allow-root --no-browser --ip=0.0.0.0 --port=8080 --NotebookApp.token='' --NotebookApp.password=''"
1919
ports:
2020
- "8080:8080"
2121

0 commit comments

Comments
 (0)