From c2046615a85f7c133def8864283706ace6564f65 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Sep 2025 12:36:22 +0000 Subject: [PATCH 1/2] Initial plan From 29f4ec2f9e3dff8d98c4606d58b06c8ab053d431 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Sep 2025 12:38:55 +0000 Subject: [PATCH 2/2] Add Python dev container config and requirements.txt Co-authored-by: DavidMStraub <10965193+DavidMStraub@users.noreply.github.com> --- .devcontainer/devcontainer.json | 13 +++++++++++++ requirements.txt | 4 ++++ 2 files changed, 17 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 requirements.txt diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..246b8b4 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "Python 3", + "image": "mcr.microsoft.com/devcontainers/python:3", + "postCreateCommand": "pip install -r requirements.txt", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + } +} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8fed041 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +numpy +scipy +matplotlib +pandas