From 9609284f5e3be0fbf785f8394fb9c271544b97bd Mon Sep 17 00:00:00 2001 From: Lionel Cons Date: Wed, 14 Feb 2024 10:11:17 +0100 Subject: [PATCH] updated the Python versions to test --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c795cd..75d7880 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,17 +5,17 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['2.7', '3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Checkout dev-tools - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: cern-mig/dev-tools path: ./dev-tools - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies