From e1e6249137400d4ce072509682bf8755045a6fea Mon Sep 17 00:00:00 2001 From: Tpt Date: Fri, 15 Jan 2021 21:05:41 +0100 Subject: [PATCH] Python: target abi3 --- python/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Cargo.toml b/python/Cargo.toml index 8a3a9509..ce363bad 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -16,7 +16,7 @@ doctest = false [dependencies] oxigraph = {version = "0.2", path="../lib", features = ["sled", "http_client"]} -pyo3 = {version = "0.13", features = ["extension-module"]} +pyo3 = {version = "0.13", features = ["extension-module", "abi3-py36"]} native-tls = {version = "0.2", features = ["vendored"]} [package.metadata.maturin]