From 4e506076c341b8d0c2e8d6a9140296adf8fb07f3 Mon Sep 17 00:00:00 2001 From: timnahw <156186100+timnahw@users.noreply.github.com> Date: Thu, 29 Feb 2024 09:52:23 +0100 Subject: [PATCH] added requirements.txt --- .devcontainer/Dockerfile | 3 ++- .github/workflows/push-container.yml | 1 + requirements.txt | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 1b8724e..8b7172c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,6 +3,7 @@ FROM python:3.12-slim RUN apt-get update && \ apt-get install -y git && \ pip install --upgrade pip && \ - pip install wrds + pip install -r requirements.txt COPY src . + diff --git a/.github/workflows/push-container.yml b/.github/workflows/push-container.yml index 90c310c..cb3cf58 100644 --- a/.github/workflows/push-container.yml +++ b/.github/workflows/push-container.yml @@ -12,6 +12,7 @@ on: paths: - .devcontainer/Dockerfile - .github/workflows/push-container.yml + - requirements.txt # to be able to trigger a manual build workflow_dispatch: diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a588323 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +wrds==3.2.0