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
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ thiserror = "2.0.11"
microvmi = { path = "../" }

[dependencies.pyo3]
version = "0.24.1"
version = "0.27.2"
features = ["extension-module", "abi3-py39"]

[package.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/pypa/manylinux2014_x86_64:latest@sha256:de0a3338f5564eb9b3645122e4c12eb4f64d63f0ce6867c9cb8e96f75eb95c5b
FROM quay.io/pypa/manylinux2014_x86_64:latest@sha256:3eee053a02bd2372799fe1fdbc256245996f66dff5d4d47173429ae7d09dd9bf

# install libclang 7.0
RUN yum -y install llvm-toolset-7.0-clang llvm-toolset-7.0-clang-devel
Expand Down
2 changes: 1 addition & 1 deletion python/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export BINDGEN_EXTRA_CLANG_ARGS="-I/opt/rh/devtoolset-10/root/usr/lib/gcc/x86_64
# map libmicrovmi root dir to /io
cd /io/python

for PYBIN in /opt/python/cp{39,310,311,312}*/bin; do
for PYBIN in /opt/python/cp{39,310,311,312,313,314}*/bin; do
"${PYBIN}/pip" install -r requirements.txt
"${PYBIN}/python" setup.py bdist_wheel $@
done
Expand Down