From cdbcdf260a19974ef8a03d92568f34e7b747cbae Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Tue, 29 Aug 2023 16:41:16 +0900 Subject: [PATCH] Update PyO3 --- Cargo.toml | 2 +- ast-pyo3/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fbd7efe..e48b10e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ log = "0.4.16" num-complex = "0.4.0" num-bigint = "0.4.3" num-traits = "0.2" -pyo3 = { version = "0.19.0" } +pyo3 = { version = "0.19.2" } malachite-bigint = { version = "0.1.0" } memchr = "2.5.0" rand = "0.8.5" diff --git a/ast-pyo3/Cargo.toml b/ast-pyo3/Cargo.toml index bf145ab..7dab3ff 100644 --- a/ast-pyo3/Cargo.toml +++ b/ast-pyo3/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" edition = "2021" [features] -# abi3 = ["pyo3/abi3-py37"] # will be supported from next pyo3 version +abi3 = ["pyo3/abi3-py37"] # will be supported from next pyo3 version # This feature is experimental # It reimplements AST types, but currently both slower than python AST types and limited to use in other API wrapper = []