Skip to content

Commit

Permalink
Set minimum version on abi3 flag to Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed May 16, 2023
1 parent fb4debb commit d1e88b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/accelerate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rustworkx-core = "0.12"
# can be done in the workspace and inherited once we hit Rust 1.64.
[dependencies.pyo3]
version = "0.18.3"
features = ["extension-module", "hashbrown", "indexmap", "num-complex", "num-bigint", "abi3"]
features = ["extension-module", "hashbrown", "indexmap", "num-complex", "num-bigint", "abi3-py38"]

[dependencies.ndarray]
version = "^0.15.6"
Expand Down
2 changes: 1 addition & 1 deletion crates/qasm2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ crate-type = ["cdylib"]

[dependencies]
hashbrown = "0.13.2"
pyo3 = { version = "0.18.3", features = ["extension-module", "abi3"] }
pyo3 = { version = "0.18.3", features = ["extension-module", "abi3-py38"] }

0 comments on commit d1e88b3

Please sign in to comment.