From 3c1df4b67f98cdcc8668b6b3ed1553b1d52d1df2 Mon Sep 17 00:00:00 2001 From: zhengp Date: Sat, 5 Aug 2023 10:39:47 +0800 Subject: [PATCH] update docs python version to 3.11 --- .github/workflows/deploy-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 228effc..babce65 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.11" - name: Install dependencies run: python -m pip install .[docs] --upgrade pip - name: Generate API docs & Build sphinx documentation