From 6ab919d9cd6b1953d65a82120458f40f9ec3a193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Wed, 11 Jan 2023 21:37:16 -0500 Subject: [PATCH] ENH: Update Python version in GitHub Actions to 3.9 Update Python version in GitHub Actions to 3.9: Python 3.7 will be deprecated on 27 Jun 2023: https://endoflife.date/python Make the version consistent with the version used in the ITK Python wrapping Azure Pipelines CI, and the ITK Sphinx Examples. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 28784430..deafe57a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,10 +14,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.7 + - name: Set up Python 3.9 uses: actions/setup-python@v1 with: - python-version: 3.7 + python-version: 3.9 - name: Install build dependencies run: |