From 5b8e3d6c75376c50fcab7d097cb9ca79ce104a71 Mon Sep 17 00:00:00 2001 From: Don Naro Date: Mon, 9 Dec 2024 20:41:44 +0000 Subject: [PATCH] Fixes #2270 use relaxed or tested requirements This change updates the build package docs workflow to use either relaxed or tested requirements files. --- .github/workflows/build-package-docs.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-package-docs.yaml b/.github/workflows/build-package-docs.yaml index 0ed27093500..a11a2491d3c 100644 --- a/.github/workflows/build-package-docs.yaml +++ b/.github/workflows/build-package-docs.yaml @@ -28,6 +28,13 @@ on: - '11' - '10' - '9' + requirements: + type: choice + description: Use relax or tested requirements + default: tested + options: + - relaxed + - tested deploy: type: boolean description: Deploy the build @@ -73,8 +80,8 @@ jobs: - name: Install project requirements run: >- python -m pip install - -r tests/requirements.in - -c tests/requirements.txt + -r tests/requirements-relaxed.in + -c tests/requirements-relaxed.txt working-directory: build-directory - name: Set the COLLECTION_LIST variable