From 2712bd08061ee14f9eff8ada3eb1ec1176afe525 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Mon, 6 Mar 2023 13:00:24 +0000 Subject: [PATCH] Requirements --- .github/workflows/get_context.yml | 2 ++ requirements.txt | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 requirements.txt diff --git a/.github/workflows/get_context.yml b/.github/workflows/get_context.yml index 96f4679..3bd4b0f 100644 --- a/.github/workflows/get_context.yml +++ b/.github/workflows/get_context.yml @@ -13,6 +13,8 @@ jobs: - uses: actions/setup-python@v4 with: python-version: '3.10' + cache: 'pip' # caching pip dependencies + - run: pip install -r requirements.txt - name: Download all workflow run artifacts uses: actions/download-artifact@v3 with: diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2856bcc --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +certifi==2022.12.7 +charset-normalizer==3.0.1 +docutils==0.19 +idna==3.4 +requests==2.28.2 +six==1.16.0 +urllib3==1.26.14