Skip to content

Commit 6c8a11a

Browse files
authored
Add devcontainer config (#191)
1 parent d49f6cd commit 6c8a11a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"image": "quay.io/pypa/manylinux2014_x86_64",
3+
"customizations": {
4+
"vscode": {
5+
"extensions": [
6+
"ms-python.python"
7+
],
8+
"settings": {
9+
"python.defaultInterpreterPath": "/opt/python/cp311-cp311/bin/python"
10+
}
11+
}
12+
},
13+
"workspaceMount": "source=${localWorkspaceFolder},target=/io,type=bind,consistency=cached",
14+
"workspaceFolder": "/io",
15+
"remoteEnv": {
16+
"PYTHON_ARCH": "x86_64",
17+
"PYTHON_VERSION": "3.11",
18+
"NUMPY_VERSION": "1.23.*"
19+
},
20+
"postCreateCommand": "git submodule update --init --recursive"
21+
}

0 commit comments

Comments
 (0)