Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin the doc build on 3.9 until upstream packages support 3.10 #2685

Merged
merged 1 commit into from
Oct 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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