From 74ca851c10a38a40ce14d2b441773d15535cc6d3 Mon Sep 17 00:00:00 2001 From: Michael Waskom Date: Sat, 23 Oct 2021 09:46:41 -0400 Subject: [PATCH] Pin the doc build on 3.9 until upstream packages support 3.10 --- .github/workflows/ci.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e431cf18dc..2c374cf2a5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,6 +21,8 @@ jobs: - name: Setup Python uses: actions/setup-python@v2 + with: + python-version: '3.9.x' - name: Install seaborn run: | @@ -44,24 +46,24 @@ jobs: strategy: matrix: - python: [3.7.x, 3.8.x, 3.9.x] + python: ['3.7.x', '3.8.x', '3.9.x'] target: [test] install: [all] deps: [latest] backend: [agg] include: - - python: 3.7.x + - python: '3.7.x' target: unittests install: all deps: pinned backend: agg - - python: 3.9.x + - python: '3.9.x' target: unittests install: light deps: latest backend: agg - - python: 3.9.x + - python: '3.9.x' target: test install: all deps: latest