From 7d338f0cb2bb36925c821da4fb5453df8cb5bf4d Mon Sep 17 00:00:00 2001 From: Lin Tianshu <54425948+oxygen-dioxide@users.noreply.github.com> Date: Tue, 23 Dec 2025 23:27:19 +0800 Subject: [PATCH] Add devcontainer configuration for onnxscript --- .devcontainer/devcontainer.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..a5328553b2 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +{ + "name": "onnxscript", + "image": "mcr.microsoft.com/devcontainers/python:1-3.13", + "features": {}, + "postCreateCommand": "pip install -r requirements-dev.txt;pip install -e .", + "customizations": { + "vscode": { + "extensions": [ + "hbenl.vscode-test-explorer", + "ms-python.python" + ] + } + } +}