From 45426a780460ff3115e014267bc55090aac1423e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 20 Oct 2024 11:05:53 +0200 Subject: [PATCH] Python 3.13 production release --- .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 50721b5..7fad4be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,18 +7,18 @@ jobs: - uses: actions/checkout@v4 - run: pip install --user codespell[toml] ruff - run: codespell **/*.py **/*.txt --skip="venv/lib/python3*" - - run: ruff check --output-format=github --target-version=py38 . + - run: ruff check --output-format=github --target-version=py39 . ci: strategy: fail-fast: false max-parallel: 4 - matrix: # macos-13 in Intel, macos-14 is Apple Silicon ARM - os: [macos-13, macos-14, ubuntu-latest, windows-latest] + matrix: # macos-13 in Intel, macos-latest is Apple Silicon ARM + os: [macos-13, macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 - with: {python-version: 3.13, allow-prereleases: true} + with: {python-version: 3.13} - name: Dump runner context env: RUNNER_CONTEXT: ${{ toJson(runner) }}