File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 15
15
matrix :
16
16
group : [check_release, link_check]
17
17
python-version : ["3.9"]
18
- node-version : ["14 .x"]
18
+ node-version : ["18 .x"]
19
19
steps :
20
20
- name : Checkout
21
21
uses : actions/checkout@v2
Original file line number Diff line number Diff line change 50
50
51
51
- name : Install dependencies
52
52
run : |
53
- mamba install python=${{ matrix.python-version }} pip nodejs=16 yarn
53
+ mamba install python=${{ matrix.python-version }} pip nodejs=18 yarn=1
54
54
pip install .[test]
55
55
56
56
- name : Build JavaScript assets
Original file line number Diff line number Diff line change @@ -163,9 +163,9 @@ def get(self):
163
163
164
164
return dict (
165
165
cells = cells ,
166
- metadata = meta [ "metadata" ] ,
167
- nbformat = int (meta [ "nbformat" ] ),
168
- nbformat_minor = int (meta [ "nbformat_minor" ] ),
166
+ metadata = meta . get ( "metadata" , {}) ,
167
+ nbformat = int (meta . get ( "nbformat" , 0 ) ),
168
+ nbformat_minor = int (meta . get ( "nbformat_minor" , 0 ) ),
169
169
)
170
170
171
171
def set (self , value ):
You can’t perform that action at this time.
0 commit comments