From 931505207eb993eda5a684d277f721225e5e0d60 Mon Sep 17 00:00:00 2001 From: Cristian Lara Date: Fri, 10 Jan 2025 11:57:30 -0500 Subject: [PATCH] Actions: Use python version 3.12 --- .github/workflows/deploy_on_release.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/nightly.yml | 2 +- .github/workflows/publish_website.yml | 2 +- .github/workflows/reusable_tutorials.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy_on_release.yml b/.github/workflows/deploy_on_release.yml index fd77a7af0d..8d8408fdb2 100644 --- a/.github/workflows/deploy_on_release.yml +++ b/.github/workflows/deploy_on_release.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install dependencies run: | pip install .[test] diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1d342c3fdd..30b4b8d61f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install dependencies env: ALLOW_LATEST_GPYTORCH_LINOP: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fb08edbc3a..5c6e41074c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install dependencies run: pip install pre-commit diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 4300bec2db..3587ee5c18 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -27,7 +27,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install dependencies env: ALLOW_LATEST_GPYTORCH_LINOP: true diff --git a/.github/workflows/publish_website.yml b/.github/workflows/publish_website.yml index 771ff4f7ab..49f908eca8 100644 --- a/.github/workflows/publish_website.yml +++ b/.github/workflows/publish_website.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - if: ${{ !inputs.new_version }} name: Install latest GPyTorch and Linear Operator run: | diff --git a/.github/workflows/reusable_tutorials.yml b/.github/workflows/reusable_tutorials.yml index f994f4bce3..d81c785923 100644 --- a/.github/workflows/reusable_tutorials.yml +++ b/.github/workflows/reusable_tutorials.yml @@ -36,7 +36,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Fetch all history for all tags and branches # We need to do this so setuptools_scm knows how to set the BoTorch version. run: git fetch --prune --unshallow