Skip to content

Commit

Permalink
Bumped version of pyodide to 0.26.2 in tests (#1966)
Browse files Browse the repository at this point in the history
  • Loading branch information
andeplane authored Oct 8, 2024
1 parent 48be4f4 commit 7d5b25c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/verify-jupyter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
- name: Build package using poetry
run: |
pip install poetry
poetry build
pip install poetry
poetry build
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install pyodide@0.25.1 # JupyterLite currently using pyodide 0.25.0
run: npm install pyodide@0.26.2 # JupyterLite currently using pyodide 0.26.2
- name: Install cognite-sdk in pyodide environment
run: |
whl_file=$(find dist -name "*.whl" | sed 's|^dist/||') # Find the built wheel file, remove dist/ prefix
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/verify-streamlit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: 'pip'
python-version: "3.8"
cache: "pip"
- name: Build package using poetry
run: |
pip install poetry
poetry build
pip install poetry
poetry build
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install pyodide@0.25.1 # stlite currently using pyodide 0.25.1
run: npm install pyodide@0.26.2 # stlite currently using pyodide 0.26.2
- name: Install cognite-sdk in pyodide environment
run: |
whl_file=$(find dist -name "*.whl" | sed 's|^dist/||') # Find the built wheel file, remove dist/ prefix
Expand Down

0 comments on commit 7d5b25c

Please sign in to comment.