From ba1b07cebdd81836bf84908d5fb99221735154d6 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 2 Sep 2024 09:14:47 +0300 Subject: [PATCH] Minimal pypy3.10 --- .github/workflows/test.yml | 47 +++----------------------------------- 1 file changed, 3 insertions(+), 44 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0bda9f4..1885bbe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,33 +2,13 @@ name: Test on: [push, pull_request, workflow_dispatch] -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - python-version: [ - "pypy3.10", - "3.8", - "3.9", - "3.10", - "3.11", - "3.12", - "3.13", - "3.14", - "3", - "3.x", - ] - os: [ - windows-latest, - macOS-latest, - ubuntu-latest, - ] + os: [ windows-latest, macOS-latest, ubuntu-latest] steps: - uses: actions/checkout@v4 @@ -36,27 +16,6 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} - allow-prereleases: true - cache: pip - cache-dependency-path: .github/workflows/test.yml - - - name: Install dependencies - run: | - python3 -m pip install -U pip - python3 -m pip install -U pytest - python3 -m pip install -U tqdm - python3 -m pip install -vvv coverage>=7.4.2 - - - name: Test - run: | - python --version - python test.py - python -m pip --version - jq --version + python-version: pypy3.10 - - run: | - python -m pip install uv - uv --version - uv venv - uv pip install norwegianblue --color=always + - run: python --version --version