From 32ae9a2d0c4cd053bb4f1a9c46d6f8691f0eab49 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Thu, 14 Nov 2024 12:35:01 +0000 Subject: [PATCH] Patched python bindings (i think) --- Cargo.toml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9925d38..cf75dd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "read_aconity_layers" -version = "0.4.0" +version = "0.4.1" edition = "2021" [lib] @@ -14,7 +14,7 @@ glob = "*" indicatif = "*" ndarray = { version = "0.16.1", features = ["rayon"] } numpy = "0.22.0" -pyo3 = { version = "0.22.5", features = ["extension-module"] } +pyo3 = { version = "0.22.5", features = ["abi3-py311", "extension-module"] } rayon = "*" thiserror = "1.0.60" diff --git a/pyproject.toml b/pyproject.toml index 5464af1..e328a34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ dynamic = ["version"] [tool.poetry] name = "read_aconity_layers" -version = "0.4.0" +version = "0.4.1" description = "A utility for fast reading of layer data from the aconity mini powder bed fusion machine" urls = { github = "https://github.com/Cian-H/read_aconity_layers" } authors = ["Cian Hughes "]