From 2a5ff820617a5010dfe164a42c67d4021121577a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 18 Mar 2025 20:58:37 -0400 Subject: [PATCH] Only run CI on py3.11 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d91f17d..571bd1db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.10' + python-version: '3.11' - name: Install dependencies run: pip install -U . --upgrade-strategy eager -r requirements-test.txt @@ -41,7 +41,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.10' + python-version: '3.11' - name: Build sdist run: python setup.py sdist --formats=zip @@ -59,7 +59,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python: ['3.10'] + python: ['3.11'] spawn_backend: [ 'trio', 'mp_spawn',