diff options
author | Chuck Lantz <clantz@microsoft.com> | 2022-11-07 21:46:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 21:46:23 +0300 |
commit | 3020d6da64798ee994d407ffd3ce3f800f6dff92 (patch) | |
tree | 4ed3232c30221851cfaf5c074fdc36c6c5c8bcc1 /src/python/devcontainer-feature.json | |
parent | 73a9c7d38293067a4081b8d79dd12e92a585ef83 (diff) |
Fix python feature issue #258, improve tests, fix oryx bug (#261)
* Fix #258, improve tests, fix oryx bug
* Drop Debian 9 from tests given it is out of support
Diffstat (limited to 'src/python/devcontainer-feature.json')
-rw-r--r-- | src/python/devcontainer-feature.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/python/devcontainer-feature.json b/src/python/devcontainer-feature.json index f2d116e..8f8faae 100644 --- a/src/python/devcontainer-feature.json +++ b/src/python/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "python", - "version": "1.0.10", + "version": "1.0.11", "name": "Python", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/python", "description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.", @@ -60,7 +60,7 @@ "ms-python.vscode-pylance" ], "settings": { - "python.defaultInterpreterPath": "/usr/local/bin/python", + "python.defaultInterpreterPath": "/usr/local/python/current/bin/python", "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", "python.formatting.blackPath": "/usr/local/py-utils/bin/black", "python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", @@ -74,6 +74,7 @@ } }, "installsAfter": [ - "ghcr.io/devcontainers/features/common-utils" + "ghcr.io/devcontainers/features/common-utils", + "ghcr.io/devcontainers/features/oryx" ] } |