From 3800f345abefee3e2dea46338fb719c19dd6b083 Mon Sep 17 00:00:00 2001 From: Julian Popescu Date: Fri, 17 May 2024 16:41:36 +0200 Subject: [PATCH] target a specific python version --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 54a0121..a3265b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xyz-parse" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = ["Julian Popescu "] license = "MIT OR Apache-2.0" @@ -23,4 +23,4 @@ python = ["pyo3"] [dependencies] rust_decimal = { version = "1.35", default-features = false } -pyo3 = { version = "0.21", features = ["rust_decimal", "extension-module"], optional = true } +pyo3 = { version = "0.21", features = ["rust_decimal", "extension-module", "abi3-py37"], optional = true }