File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
strategy :
16
16
matrix :
17
- python-version : ["3.10 "]
17
+ python-version : ["3.11 "]
18
18
19
19
steps :
20
20
- uses : actions/checkout@v2
28
28
sudo apt install graphviz # Needed for documentation
29
29
python -m pip install --upgrade pip
30
30
pip install -r requirements.txt -r requirements-dev.txt -r requirements-doc.txt
31
+ pip install -U dask distributed # need latest versions to successully build docs
31
32
- name : Run pre-commit
32
33
uses :
pre-commit/[email protected]
33
34
- name : Check for Sphinx doc warnings
Original file line number Diff line number Diff line change @@ -15,13 +15,14 @@ jobs:
15
15
- name : Set up Python ${{ matrix.python-version }}
16
16
uses : actions/setup-python@v2
17
17
with :
18
- python-version : " 3.10 "
18
+ python-version : " 3.11 "
19
19
- name : Install dependencies
20
20
run : |
21
21
sudo apt update -y
22
22
sudo apt install graphviz # Needed for documentation
23
23
python -m pip install --upgrade pip
24
24
pip install -r requirements.txt -r requirements-dev.txt -r requirements-doc.txt
25
+ pip install -U dask distributed # need latest versions to successully build docs
25
26
- name : Build Sphinx documentation
26
27
run : |
27
28
cd docs
You can’t perform that action at this time.
0 commit comments