From 474848552eaae35391f80df9493fa9c7ac28043a Mon Sep 17 00:00:00 2001 From: Del Hyman-Jones Date: Tue, 10 Dec 2024 16:58:07 +0000 Subject: [PATCH] update GitHub workflows with new python versions --- .github/workflows/continuous_integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index f1a4333..a0df7a7 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -8,10 +8,10 @@ jobs: fail-fast: false steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10.0 + - name: Set up Python 3.9.0 uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.9" - name: Run pre-commit uses: pre-commit/action@v3.0.0 @@ -36,7 +36,7 @@ jobs: PGDATABASE: postgres strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] fail-fast: false steps: