From 1395f06fdc4a34f556f40d69c91dade506f8870e Mon Sep 17 00:00:00 2001 From: Brian Egge Date: Sun, 10 Nov 2024 17:51:29 -0500 Subject: [PATCH] Update python task to 3.12 (#420) --- .github/workflows/pull.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 122fb4f..98fed20 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -35,10 +35,11 @@ jobs: steps: - name: Check out code from GitHub uses: "actions/checkout@v2" - - name: Setup Python - uses: "actions/setup-python@v1" + - name: "Set up Python" + uses: actions/setup-python@v5.3.0 with: - python-version: "3.8" + python-version: "3.12" + cache: "pip" - name: Install requirements run: python3 -m pip install -r requirements_test.txt - name: Run tests