We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7da3762 commit 449dcbdCopy full SHA for 449dcbd
.github/workflows/pyodide.yml
@@ -45,7 +45,7 @@ jobs:
45
- name: Build with Pyodide
46
run: pyodide build
47
- name: Normalize package name
48
- run: mv dist/healpy*whl dist/healpy.whl
+ run: mv dist/healpy*whl dist/healpy-0.1.0-py3-none-any.whl
49
- name: Setup Pages
50
uses: actions/configure-pages@v5
51
- name: Upload artifact
index.html
@@ -10,7 +10,7 @@
10
11
await pyodide.loadPackage("micropip");
12
const micropip = pyodide.pyimport("micropip");
13
- await micropip.install('dist/healpy.whl');
+ await micropip.install('dist/healpy-0.1.0-py3-none-any.whl');
14
pyodide.runPython(`
15
import healpy
16
print(healpy.__version__)
0 commit comments