From 47a469484d540fdb592bcaf9dfb890aacdb2aa1b Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 19 Aug 2021 13:54:50 -0400 Subject: [PATCH] Drop py3.7 from CI; cut run to 5mins --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6c19ac..f446f48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,13 +24,13 @@ jobs: testing: name: '${{ matrix.os }} Python ${{ matrix.python }} - ${{ matrix.spawn_backend }}' - timeout-minutes: 10 + timeout-minutes: 5 runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - python: ['3.7', '3.8', '3.9'] + python: ['3.8', '3.9'] spawn_backend: ['trio', 'mp'] steps: - name: Checkout