Skip to content

Commit ade8b54

Browse files
committed
remove 32bit windows and 32bit linux builds
1 parent 3143c50 commit ade8b54

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def main() -> None:
3636
)
3737

3838
# Build vcell-native as native shared object library
39-
run_command("mvn package -P shared-dll", cwd=vcell_native_dir)
39+
run_command("mvn --batch-mode package -P shared-dll", cwd=vcell_native_dir)
4040

4141
# Copy the shared library to libvcell/lib
4242
for ext in ["so", "dylib", "dll"]:

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ mkdocstrings = {extras = ["python"], version = "^0.27.0"}
4242
build = "cp311-* cp312-* cp313-*"
4343
manylinux-x86_64-image = "ghcr.io/virtualcell/manylinux_2_28_x86_64:0.0.1"
4444

45+
[tool.cibuildwheel.linux]
46+
archs = ["x86_64"]
47+
48+
[tool.cibuildwheel.windows]
49+
archs = ["AMD64"]
50+
4551
[tool.setuptools.package-data]
4652
libvcell = ["lib/*"]
4753

0 commit comments

Comments
 (0)