From 874beb318a3824431b4f1dbbcdd04732c6d712d3 Mon Sep 17 00:00:00 2001 From: Moritz Makowski Date: Thu, 25 Jan 2024 19:01:21 +0100 Subject: [PATCH] Possibly debug GitHub action --- README.md | 2 +- action.yml | 9 +++------ pdm.lock | 8 ++++---- pyproject.toml | 4 ++-- 4 files changed, 10 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1bc97e4..2e4e791 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ This repository only contains a Python library to interact with the metadata. Th Install as a library: ```bash -poetry add em27_metadata +pdm add em27_metadata # or pip install em27_metadata ``` diff --git a/action.yml b/action.yml index 9cb1637..d3a6384 100644 --- a/action.yml +++ b/action.yml @@ -8,22 +8,19 @@ runs: - name: Check out repository uses: actions/checkout@v4 - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v4 with: python-version: "3.12" cache: "pip" # move all library files into working directory; this makes - # testing easier whebecausen we don't have to worry about - # different paths for the repo and the action. Copying the - # README.md is required for the poetry install command + # testing easier because we don't have to worry about + # different paths for the repo and the action. - name: Copy action files run: | cp -r ${{ github.action_path }}/tests . cp -r ${{ github.action_path }}/em27_metadata . cp ${{ github.action_path }}/pyproject.toml . - cp ${{ github.action_path }}/pdm.lock . - cp ${{ github.action_path }}/README.md . shell: bash # install dependencies if cache does not exist diff --git a/pdm.lock b/pdm.lock index 1b9b648..f78bd91 100644 --- a/pdm.lock +++ b/pdm.lock @@ -5,7 +5,7 @@ groups = ["default", "dev"] strategy = ["cross_platform", "inherit_metadata"] lock_version = "4.4.1" -content_hash = "sha256:71e9fb33e047d3f15fcb711d467b779131e7bd4be40000bd9c22bd9c9f4ffa4b" +content_hash = "sha256:b236db9589483976ba9bbc5ffb2c4f6bbc7cb98d81b16b25fb555321083e6590" [[package]] name = "annotated-types" @@ -444,7 +444,7 @@ files = [ [[package]] name = "types-requests" -version = "2.31.0.20240106" +version = "2.31.0.20240125" requires_python = ">=3.8" summary = "Typing stubs for requests" groups = ["dev"] @@ -452,8 +452,8 @@ dependencies = [ "urllib3>=2", ] files = [ - {file = "types-requests-2.31.0.20240106.tar.gz", hash = "sha256:0e1c731c17f33618ec58e022b614a1a2ecc25f7dc86800b36ef341380402c612"}, - {file = "types_requests-2.31.0.20240106-py3-none-any.whl", hash = "sha256:da997b3b6a72cc08d09f4dba9802fdbabc89104b35fe24ee588e674037689354"}, + {file = "types-requests-2.31.0.20240125.tar.gz", hash = "sha256:03a28ce1d7cd54199148e043b2079cdded22d6795d19a2c2a6791a4b2b5e2eb5"}, + {file = "types_requests-2.31.0.20240125-py3-none-any.whl", hash = "sha256:9592a9a4cb92d6d75d9b491a41477272b710e021011a2a3061157e2fb1f1a5d1"}, ] [[package]] diff --git a/pyproject.toml b/pyproject.toml index 30e00bb..47aedc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "em27_metadata" -version = "1.0.0-rc.7" +version = "1.0.0-rc.8" description = "Single source of truth for ESM's EM27 measurement logistics" authors = [ { name = "Moritz Makowski", email = "moritz.makowski@tum.de" }, @@ -28,7 +28,7 @@ documentation = "https://em27-retrieval-pipeline.netlify.app/" dev = [ "pytest>=7.4.4", "mypy>=1.8.0", - "types-requests>=2.31.0.20240106", + "types-requests>=2.31.0.20240125", "yapf>=0.40.2", "python-dotenv>=1.0.1", ]