File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 16
16
jobs :
17
17
build-deploy-docs :
18
18
name : Docs
19
- runs-on : ubuntu-18.04
19
+ runs-on : ubuntu-latest
20
20
steps :
21
21
- name : Cancel Previous Runs
22
22
@@ -39,12 +39,15 @@ jobs:
39
39
id : cache
40
40
with :
41
41
path : venv
42
- key : docs-venv-v1 -${{ hashFiles('requirements/CI-docs/requirements.txt') }}
42
+ key : docs-venv-v2 -${{ hashFiles('requirements/CI-docs/requirements.txt') }}
43
43
44
44
- name : Build virtualenv
45
45
if : steps.cache.outputs.cache-hit != 'true'
46
46
run : python -m venv venv
47
47
48
+ - name : Downgrade pip to allow conflicting deps
49
+ run : venv/bin/activate && pip install pip==20.0.2
50
+
48
51
- name : Install deps
49
52
run : venv/bin/activate && pip install -r requirements/CI-docs/requirements.txt
50
53
Original file line number Diff line number Diff line change @@ -13,3 +13,4 @@ tskit==0.5.3
13
13
tskit-book-theme == 0.3.2
14
14
tqdm == 4.64.0
15
15
zarr == 2.11.3
16
+ jsonschema [format-nongpl ]== 4.17.3
You can’t perform that action at this time.
0 commit comments