From 04a4441b052831a1068e95409cf19bd639428433 Mon Sep 17 00:00:00 2001 From: Felix Seifert Date: Wed, 9 Oct 2024 16:22:38 +0200 Subject: [PATCH] ci: remove prerelease version --- .github/workflows/test-python.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 7ff09e7b..b6d35aec 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -282,35 +282,6 @@ jobs: - name: Run simple code run: python -c 'import math; print(math.factorial(5))' - setup-prerelease-version: - name: Setup 3.13 ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [macos-latest, windows-latest, ubuntu-latest] - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: setup-python 3.13 - id: setup-python - uses: ./ - with: - python-version: '3.13' - allow-prereleases: true - - - name: Check python-path - run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}' - shell: bash - - - name: Validate version - run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.13.') }} - shell: bash - - - name: Run simple code - run: python -c 'import math; print(math.factorial(5))' - setup-versions-noenv: name: Setup ${{ matrix.python }} ${{ matrix.os }} (noenv) runs-on: ${{ matrix.os }}