From 8fc85db9d2ea0951191ac31d7777781a23017037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigbj=C3=B8rn=20Skj=C3=A6ret?= Date: Wed, 25 Mar 2026 09:55:37 +0100 Subject: [PATCH] ci : limit requirements versions (#20980) * set requests version * limit versions outside requirements --- .github/workflows/copilot-setup-steps.yml | 1 - .github/workflows/gguf-publish.yml | 2 +- requirements/requirements-pydantic.txt | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 749debee41..6f648bac45 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -54,4 +54,3 @@ jobs: python3 -m venv .venv source .venv/bin/activate pip install -r requirements/requirements-all.txt -r tools/server/tests/requirements.txt - pip install flake8 pyright pre-commit diff --git a/.github/workflows/gguf-publish.yml b/.github/workflows/gguf-publish.yml index 5bdab0f157..660e25333b 100644 --- a/.github/workflows/gguf-publish.yml +++ b/.github/workflows/gguf-publish.yml @@ -32,7 +32,7 @@ jobs: - name: Install dependencies run: | cd gguf-py - python -m pip install poetry + python -m pip install poetry==2.3.2 poetry install - name: Build package diff --git a/requirements/requirements-pydantic.txt b/requirements/requirements-pydantic.txt index 67d4c1e557..1738494edb 100644 --- a/requirements/requirements-pydantic.txt +++ b/requirements/requirements-pydantic.txt @@ -1,3 +1,3 @@ docstring_parser~=0.15 pydantic~=2.11.7 -requests +requests~=2.32.3