From 17e3508b17190cd7df8f07d345e88e728545ed37 Mon Sep 17 00:00:00 2001 From: Feeph Aifeimei <55798703+feeph@users.noreply.github.com> Date: Wed, 22 Apr 2026 00:53:39 +0200 Subject: [PATCH 1/2] ci: fix GitHub Action 'verify pull request' --- .github/workflows/validate-code.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-code.yaml b/.github/workflows/validate-code.yaml index 35ebd1c..070cb8c 100644 --- a/.github/workflows/validate-code.yaml +++ b/.github/workflows/validate-code.yaml @@ -83,9 +83,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: install uv uses: astral-sh/setup-uv@v7 - - name: install dependencies with: python-version: ${{ matrix.python-version }} + - name: install dependencies run: | uv export --format=requirements.txt --all-extras --dev > requirements.txt pip install -r requirements.txt From d05ff8af3301df4ef2604d58564ccec7481b1a27 Mon Sep 17 00:00:00 2001 From: Feeph Aifeimei <55798703+feeph@users.noreply.github.com> Date: Wed, 22 Apr 2026 01:01:21 +0200 Subject: [PATCH 2/2] ci: fix GitHub Action 'verify pull request' (2) --- .github/workflows/validate-code.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-code.yaml b/.github/workflows/validate-code.yaml index 070cb8c..7bcfad1 100644 --- a/.github/workflows/validate-code.yaml +++ b/.github/workflows/validate-code.yaml @@ -87,7 +87,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: install dependencies run: | - uv export --format=requirements.txt --all-extras --dev > requirements.txt + uv export --format=requirements.txt --no-emit-local --all-extras --dev > requirements.txt pip install -r requirements.txt # https://github.com/marketplace/actions/run-pytest - name: perform unit tests (Python ${{ matrix.python-version }})