Skip to content

Commit

Permalink
Updated dependencies for 1.2.5 release (#461)
Browse files Browse the repository at this point in the history
* Updated dependencies

* Relaxed specification of qoqo_calculator dependency
  • Loading branch information
nfwvogt authored Feb 15, 2023
1 parent 1f8193f commit 0bc8c1c
Show file tree
Hide file tree
Showing 12 changed files with 92 additions and 69 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:

publish_documentation:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_unittests_rust_pyo3.yml@main
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_publish_documenation_rust_sphinx.yml@main
with:
py_interface_folder: "qoqo"
py_docs_folder: "qoqo/docs"
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/temp_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@ jobs:
py_interface_folder: "qoqo_calculator_pyo3"
# Try to build python wheels with universal2 for arm and x86
universal2: true
deploy: false


deploy: false
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This changelog track changes to the qoqo project starting at version v0.5.0

## 1.2.5

* Updated to pyo3 0.18.1


## 1.2.4

* Updated to pyo3 0.18, qoqo_calculator 1.1.1 and nalgebra 0.32
Expand Down
69 changes: 41 additions & 28 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions compatibility_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compatibility_test"
version = "1.2.4"
version = "1.2.5"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -21,9 +21,9 @@ publish = false
[dependencies]
test_roqoqo_1_0 = {package = "roqoqo", version="=1.0.0"}
test_roqoqo_derive_1_0 = {package = "roqoqo-derive", version="=1.0.0"}
qoqo_calculator = { version="1.1.1" }
roqoqo = {version="1.2.4", path="../roqoqo", features=["serialize", "overrotate"]}
qoqo_calculator = { version="1.1" }
roqoqo = {version="1.2.5", path="../roqoqo", features=["serialize", "overrotate"]}
bincode = {version="1.3"}

[dev-dependencies]
test-case = "2.0"
test-case = "3.0"
2 changes: 1 addition & 1 deletion qoqo-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo-macros"
version = "1.2.4"
version = "1.2.5"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
readme = "../README.md"
Expand Down
12 changes: 6 additions & 6 deletions qoqo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo"
version = "1.2.4"
version = "1.2.5"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/HQSquantumsimulations/qoqo"
Expand Down Expand Up @@ -30,16 +30,16 @@ serde = { version = "1.0", features = ["derive"] }
ndarray = "0.15"
num-complex = "0.4"
thiserror = "1.0"
qoqo_calculator = { version="1.1.1" }
qoqo_calculator_pyo3 = {version="1.1.1", default-features=false}
qoqo-macros = {version="1.2.4", path="../qoqo-macros"}
roqoqo = {version="1.2.4", path="../roqoqo", features=["serialize", "overrotate"]}
qoqo_calculator = { version="1.1" }
qoqo_calculator_pyo3 = {version="1.1", default-features=false}
qoqo-macros = {version="1.2.5", path="../qoqo-macros"}
roqoqo = {version="1.2.5", path="../roqoqo", features=["serialize", "overrotate"]}
numpy = "0.18"
bincode = "1.3"
serde_json = "1.0"

[dev-dependencies]
test-case = "2.0"
test-case = "3.0"
nalgebra = "0.32"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion qoqo/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "qoqo"
version = "1.2.4"
version = "1.2.5"
dependencies = [
'numpy',
'qoqo_calculator_pyo3>=1.1',
Expand Down
Loading

0 comments on commit 0bc8c1c

Please sign in to comment.