From 777936fd77ae8632fd29a46adb295f3bb19921fd Mon Sep 17 00:00:00 2001 From: Lucas Hervier Date: Tue, 8 Oct 2024 16:05:46 +0200 Subject: [PATCH] fix: ci broken because the python version was not set thus not able to respect the constraints on tensorflow version --- .github/workflows/deploy-docs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index acbc2bb6..48038c4c 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -3,6 +3,7 @@ name: "Build and Publish Latest Release Docs" on: release: types: [published] + workflow_dispatch: permissions: contents: write @@ -21,7 +22,7 @@ jobs: - name: "Set up Python" uses: actions/setup-python@v2 with: - python-version: '3.x' + python-version: '3.10' - name: "Install Dependencies" run: |