Skip to content

Commit 29183c7

Browse files
twieckimaresb
andauthored
Add building of pyodide universal wheels (#918)
* Add building of pyodide universal wheels * precommit * Fix precommit. Readd comment. * Fix precommit2 * Minor improvement to ext_modules conditional definition * Bump Python version so that tomllib is included This way versioneer can read pyproject.toml * Add wheel package to build dependencies * Update .github/workflows/pypi.yml * Revert unnecessary * ruff --------- Co-authored-by: Ben Mares <[email protected]>
1 parent 7fffec6 commit 29183c7

File tree

2 files changed

+48
-7
lines changed

2 files changed

+48
-7
lines changed

.github/workflows/pypi.yml

+30
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,31 @@ jobs:
5757
name: wheels-${{ matrix.platform }}
5858
path: ./wheelhouse/*.whl
5959

60+
build_universal_wheel:
61+
name: Build universal wheel for Pyodide
62+
runs-on: ubuntu-latest
63+
steps:
64+
- uses: actions/checkout@v4
65+
with:
66+
fetch-depth: 0
67+
68+
- name: Set up Python
69+
uses: actions/setup-python@v4
70+
with:
71+
python-version: '3.11'
72+
73+
- name: Install dependencies
74+
run: pip install numpy versioneer wheel
75+
76+
- name: Build universal wheel
77+
run: |
78+
PYODIDE=1 python setup.py bdist_wheel --universal
79+
80+
- uses: actions/upload-artifact@v4
81+
with:
82+
name: universal_wheel
83+
path: dist/*.whl
84+
6085
check_dist:
6186
name: Check dist
6287
needs: [make_sdist,build_wheels]
@@ -103,6 +128,11 @@ jobs:
103128
path: dist
104129
merge-multiple: true
105130

131+
- uses: actions/download-artifact@v4
132+
with:
133+
name: universal_wheel
134+
path: dist
135+
106136
- uses: pypa/[email protected]
107137
with:
108138
user: __token__

setup.py

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python
2+
import os
3+
24
import numpy
35
import versioneer
46
from setuptools import Extension, setup
@@ -11,17 +13,26 @@
1113

1214
NAME: str = dist.get_name() # type: ignore
1315

16+
# Check if building for Pyodide
17+
is_pyodide = os.getenv("PYODIDE", "0") == "1"
18+
19+
if is_pyodide:
20+
# For pyodide we build a universal wheel that must be pure-python
21+
# so we must omit the cython-version of scan.
22+
ext_modules = []
23+
else:
24+
ext_modules = [
25+
Extension(
26+
name="pytensor.scan.scan_perform",
27+
sources=["pytensor/scan/scan_perform.pyx"],
28+
include_dirs=[numpy.get_include()],
29+
),
30+
]
1431

1532
if __name__ == "__main__":
1633
setup(
1734
name=NAME,
1835
version=versioneer.get_version(),
1936
cmdclass=versioneer.get_cmdclass(),
20-
ext_modules=[
21-
Extension(
22-
name="pytensor.scan.scan_perform",
23-
sources=["pytensor/scan/scan_perform.pyx"],
24-
include_dirs=[numpy.get_include()],
25-
),
26-
],
37+
ext_modules=ext_modules,
2738
)

0 commit comments

Comments
 (0)