Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
fail-fast: false
matrix:
include:
- emsdk_ver: "3.1.45"
python_version: "3.11"
- emsdk_ver: "3.1.73"
python_version: "3.13"


steps:
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Install micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-dev_${{matrix.emsdk_ver}}.yml
environment-file: environment-dev.yml
environment-name: pyjs-wasm
condarc: |
channels:
Expand Down
10 changes: 5 additions & 5 deletions build_mkdocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ if [ ! -d "$WASM_ENV_PREFIX" ]; then
echo "Creating wasm env $WASM_ENV_NAME"
micromamba create -n $WASM_ENV_NAME \
--platform=emscripten-wasm32 \
-c https://repo.mamba.pm/emscripten-forge \
-c https://repo.mamba.pm/conda-forge \
-c https://repo.prefix.dev/emscripten-forge-dev\
-c https://repo.prefix.dev/conda-forge \
--yes \
python=$PYTHON_VERSION "pybind11" nlohmann_json pybind11_json numpy \
bzip2 sqlite zlib zstd libffi exceptiongroup\
"xeus" "xeus-lite" xeus-python "xeus-javascript" xtl "ipython=8.22.2=py311had7285e_1" "traitlets>=5.14.2" \
openssl
"xeus" "xeus-lite" xeus-python "xeus-javascript" xtl "ipython" "traitlets>=5.14.2" \
openssl liblzma

else
echo "Wasm env $WASM_ENV_NAME already exists"
Expand Down Expand Up @@ -100,7 +100,7 @@ if true; then
-DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ON \
-DCMAKE_INSTALL_PREFIX=$PREFIX \
-DXPYT_EMSCRIPTEN_WASM_BUILD=ON \
-DCMAKE_INCLUDE_PATH=$WASM_ENV_PREFIX/include/python3.11
-DCMAKE_INCLUDE_PATH=$WASM_ENV_PREFIX/include/python3.13


emmake make -j8 install
Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ plugins:
options:
allow_inspection: true
show_root_heading: true
show_source: false


markdown_extensions:
Expand Down