From 7c23170bb6cd6abcc0d9e1c2b122f8d72c763547 Mon Sep 17 00:00:00 2001 From: Tpt Date: Mon, 2 Jan 2023 18:16:04 +0100 Subject: [PATCH] Maturin: fails if manylinux tag is not properly added --- .github/workflows/manylinux_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manylinux_build.sh b/.github/workflows/manylinux_build.sh index 20f38cfd..1ed3f3e2 100644 --- a/.github/workflows/manylinux_build.sh +++ b/.github/workflows/manylinux_build.sh @@ -13,9 +13,9 @@ source venv/bin/activate pip install -r requirements.dev.txt maturin develop --release -m Cargo.toml python generate_stubs.py pyoxigraph pyoxigraph.pyi --black -maturin build --release -m Cargo.toml --features abi3 +maturin build --release -m Cargo.toml --features abi3 --compatibility manylinux2014 if [ %for_each_version% ]; then for VERSION in 7 8 9 10 11; do - maturin build --release -m Cargo.toml --interpreter "python3.$VERSION" + maturin build --release -m Cargo.toml --interpreter "python3.$VERSION" --compatibility manylinux2014 done fi