Skip to content

Commit

Permalink
Pin the doc build on 3.9 until upstream packages support 3.10 (#2685)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom authored Oct 23, 2021
1 parent 59e6125 commit ff0fc76
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.9.x'

- name: Install seaborn
run: |
Expand All @@ -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
Expand Down

0 comments on commit ff0fc76

Please sign in to comment.