Skip to content

Commit 5ed3537

Browse files
authored
chore: update numpy version (#672)
* chore: update numpy version * chore: update github action workflow
1 parent 4ca4c34 commit 5ed3537

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/auto-ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
with:
2626
submodules: 'recursive'
2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
cache: 'yarn'
@@ -36,7 +36,7 @@ jobs:
3636
chmod u+x ./scripts/compile.sh
3737
./scripts/compile.sh
3838
- name: Uploading dist
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: pygwalker-app
4242
path: ./pygwalker/templates/dist/*
@@ -52,9 +52,9 @@ jobs:
5252

5353
runs-on: ${{ matrix.os-version }}
5454
steps:
55-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5656
- name: Download PyGWalkerApp
57-
uses: actions/download-artifact@v3
57+
uses: actions/download-artifact@v4
5858
id: build-py
5959
with:
6060
name: pygwalker-app
@@ -81,7 +81,7 @@ jobs:
8181
- name: Try Running
8282
working-directory: ./tests/
8383
run: |
84-
pip install ipykernel nbconvert "pandas<=2.0.3" polars
84+
pip install ipykernel nbconvert pandas polars
8585
python -m ipykernel install --name python --user
8686
jupyter kernelspec list
8787
jupyter nbconvert --execute --ExecutePreprocessor.kernel_name=python --to html *.ipynb
@@ -91,7 +91,7 @@ jobs:
9191
pip install pytest
9292
pytest tests
9393
- name: Uploading notebooks
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
if: ${{ matrix.python-version == '3.12' && matrix.os-version == 'ubuntu-latest' }}
9696
with:
9797
name: notebook

.github/workflows/publish.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
submodules: 'recursive'
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
cache: 'yarn'
@@ -30,7 +30,7 @@ jobs:
3030
./scripts/compile.sh
3131
- name: Uploading dist
3232
if: ${{ matrix.node-version == '16.x' }}
33-
uses: actions/upload-artifact@v3
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: pygwalker-app
3636
path: ./pygwalker/templates/dist/*
@@ -46,9 +46,9 @@ jobs:
4646

4747
runs-on: ${{ matrix.os-version }}
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
- name: Download PyGWalkerApp
51-
uses: actions/download-artifact@v3
51+
uses: actions/download-artifact@v4
5252
with:
5353
name: pygwalker-app
5454
path: ./pygwalker/templates/dist
@@ -63,7 +63,7 @@ jobs:
6363
python -m build .
6464
- name: Uploading packages
6565
if: ${{ matrix.python-version == '3.12' && matrix.os-version == 'ubuntu-latest' }}
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: pygwalker
6969
path: ./dist/*

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies = [
3333
"kanaries_track==0.0.5",
3434
"cachetools",
3535
"packaging",
36-
"numpy<2.0.0",
36+
"numpy",
3737
"ipylab<=1.0.0",
3838
"quickjs",
3939
"traitlets",

0 commit comments

Comments
 (0)