@@ -21,11 +21,11 @@ jobs:
21
21
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
22
22
23
23
steps :
24
- - uses : actions/checkout@v3
24
+ - uses : actions/checkout@v4
25
25
with :
26
26
submodules : ' recursive'
27
27
- name : Use Node.js ${{ matrix.node-version }}
28
- uses : actions/setup-node@v3
28
+ uses : actions/setup-node@v4
29
29
with :
30
30
node-version : ${{ matrix.node-version }}
31
31
cache : ' yarn'
36
36
chmod u+x ./scripts/compile.sh
37
37
./scripts/compile.sh
38
38
- name : Uploading dist
39
- uses : actions/upload-artifact@v3
39
+ uses : actions/upload-artifact@v4
40
40
with :
41
41
name : pygwalker-app
42
42
path : ./pygwalker/templates/dist/*
52
52
53
53
runs-on : ${{ matrix.os-version }}
54
54
steps :
55
- - uses : actions/checkout@v3
55
+ - uses : actions/checkout@v4
56
56
- name : Download PyGWalkerApp
57
- uses : actions/download-artifact@v3
57
+ uses : actions/download-artifact@v4
58
58
id : build-py
59
59
with :
60
60
name : pygwalker-app
81
81
- name : Try Running
82
82
working-directory : ./tests/
83
83
run : |
84
- pip install ipykernel nbconvert " pandas<=2.0.3" polars
84
+ pip install ipykernel nbconvert pandas polars
85
85
python -m ipykernel install --name python --user
86
86
jupyter kernelspec list
87
87
jupyter nbconvert --execute --ExecutePreprocessor.kernel_name=python --to html *.ipynb
91
91
pip install pytest
92
92
pytest tests
93
93
- name : Uploading notebooks
94
- uses : actions/upload-artifact@v3
94
+ uses : actions/upload-artifact@v4
95
95
if : ${{ matrix.python-version == '3.12' && matrix.os-version == 'ubuntu-latest' }}
96
96
with :
97
97
name : notebook
0 commit comments