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
5 changes: 4 additions & 1 deletion .github/workflows/deploy-github-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
- name: Build xeus-python
shell: bash -l {0}
run: |
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32
micromamba create \
-f environment-wasm-host.yml --platform=emscripten-wasm32 \
-c https://prefix.dev/emscripten-forge-dev \
-c https://prefix.dev/conda-forge

set -eux

Expand Down
2 changes: 1 addition & 1 deletion environment-wasm-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: xeus-python-wasm-build
channels:
- https://repo.prefix.dev/emscripten-forge-dev
- https://prefix.dev/emscripten-forge-dev
- conda-forge
dependencies:
- cmake
Expand Down
4 changes: 2 additions & 2 deletions environment-wasm-host.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: xeus-python-wasm-host
channels:
- https://repo.prefix.dev/emscripten-forge-dev
- https://repo.prefix.dev/conda-forge
- https://prefix.dev/emscripten-forge-dev
- https://prefix.dev/conda-forge
dependencies:
- ipython
- pybind11 <3
Expand Down
Loading