From 7c5767c2fca4d13df496438a03e17113d5761380 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 2 May 2023 16:07:09 +0200 Subject: [PATCH] Update release matrix strategy. Co-authored-by: Hugo van Kemenade --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75a8d93e..2b1d393d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,6 @@ jobs: strategy: matrix: python-version: ["3.9", "3.10", "3.11", "3.12"] - # Workaround for actions/setup-python#508 - dev: ["-dev"] steps: - uses: actions/checkout@v2 @@ -27,7 +25,8 @@ jobs: ${{ runner.os }}-pip- - uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }}${{ matrix.dev }} + python-version: ${{ matrix.python-version }} + allow-prereleases: true - run: python3 -m pip install -U -r dev-requirements.txt - run: pytest --cov=. --cov-report=xml - uses: codecov/codecov-action@v2