From 964bc03a04d7e4de8d3bf85baee7fd795d4acc7e Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Wed, 27 Nov 2024 16:18:59 +0100 Subject: [PATCH] Update python version to 3.12 for pre-commit CI --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f324ec7f..d562ebd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: continuous-integration +name: ci on: [push, pull_request] @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.12' - name: Install Python dependencies run: pip install -e .[pre-commit] @@ -45,7 +45,7 @@ jobs: run: pip install -e .[tests] - name: Run pytest - run: pytest -sv --cov=plumpy test + run: pytest -s --cov=plumpy test - name: Create xml coverage run: coverage xml