Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaem committed Jun 19, 2024
2 parents 0d79db8 + cb8471a commit 0d0e22c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@
"cpus": 4
},
"waitFor": "onCreateCommand",
"updateContentCommand": "conda env create --file environment.yml && source activate shenfun && python setup.py build_ext -i && export PYTHONPATH=$PWD",
"postCreateCommand": "",
"updateContentCommand": ["/bin/bash", "-c", "conda env create --file environment.yml && source activate shenfun && python setup.py build_ext -i && export PYTHONPATH=$PWD"],
"customizations": {
"codespaces": {
"openFiles": []
},
"vscode": {
"extensions": [
"ms-python.python"
]
],
"settings": {
"python.pythonPath": "/opt/conda/envs/shenfun",
"python.defaultInterpreterPath": "/opt/conda/envs/shenfun"
}
}
}
},
"postCreateCommand": "conda init"
}

0 comments on commit 0d0e22c

Please sign in to comment.