Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to Pyo3 0.23 #318

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This changelog track changes to the qoqo_calculator project starting at version 0.6.0

## 1.4.0

* Updated to pyo3 0.23

## 1.3.0

* Updated to pyo3 0.22
Expand Down
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion qoqo_calculator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo_calculator"
version = "1.3.0"
version = "1.4.0"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions qoqo_calculator_pyo3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo_calculator_pyo3"
version = "1.3.0"
version = "1.4.0"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -23,17 +23,17 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
num-complex = "0.4"
qoqo_calculator = { version = "1.3", path = "../qoqo_calculator" }
qoqo_calculator = { version = "1.4", path = "../qoqo_calculator" }
serde = "1.0"
thiserror = "1.0"

[dependencies.pyo3]
version = "0.22"
version = "0.23"
features = ["num-complex"]

[build-dependencies]
pyo3-build-config = "0.22"
pyo3 = "0.22"
pyo3-build-config = "0.23"
pyo3 = "0.23"

[features]
extension-module = ["pyo3/extension-module"]
Expand Down
2 changes: 1 addition & 1 deletion qoqo_calculator_pyo3/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "qoqo_calculator_pyo3"
version = "1.3.0"
version = "1.4.0"
license = { text = "Apache-2.0 AND Apache-2.0 with LLVM-exception AND MIT AND Unicode-DFS-2016" }
maintainers = [
{ name = "HQS Quantum Simulations GmbH", email = "[email protected]" },
Expand Down
Loading
Loading