Skip to content

Commit

Permalink
v0.13.0 Release Fix (#119)
Browse files Browse the repository at this point in the history
* py313 workflows

* versioning
  • Loading branch information
mlodi-hqs authored Dec 4, 2024
1 parent 7344647 commit d8aabc5
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/hqs-build-deploy-rust-pyo3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
types: [created]

jobs:

deploy_cratesio:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -40,6 +39,7 @@ jobs:
deploy: true
# Whether to build for aarch64. Can fail if there are C/C++ dependencies
build_for_arm: true
python_3_13: false
secrets: inherit

# Build macos wheels and upload them to PyPi
Expand All @@ -52,6 +52,7 @@ jobs:
# Try to build python wheels with universal2 for arm and x86
universal2: true
deploy: true
python_3_13: false
secrets: inherit

# Build windows wheels and upload them to PyPi
Expand All @@ -62,4 +63,5 @@ jobs:
with:
py_interface_folder: "qoqo_qasm"
deploy: true
python_3_13: false
secrets: inherit
4 changes: 3 additions & 1 deletion .github/workflows/hqs-ci-test-rust-pyo3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
# Test code coverage of rust core is over 90 percent
test_code_coverage: true
rust_package_name: "roqoqo-qasm"
python_3_13: false

build_tests:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_build_tests_rust_pyo3.yml@main
Expand All @@ -28,4 +29,5 @@ jobs:
# Run tests also on macos runners
macos: false
py_interface_folder: "qoqo_qasm"
has_python_tests: true
has_python_tests: true
python_3_13: false
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 qasm project starting at version 0.5.0

### 0.13.1

* Fixed `0.13.0` release deploy issues

### 0.13.0

* Added support for `EchoCrossResonance` gate.
Expand Down
4 changes: 2 additions & 2 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_qasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo_qasm"
version = "0.13.0"
version = "0.13.1"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion qoqo_qasm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "qoqo_qasm"
version = "0.13.0"
version = "0.13.1"
dependencies = ['qoqo>=1.15', 'qoqo_calculator_pyo3>=1.2']
license = { text = "Apache-2.0 AND Apache-2.0 with LLVM-exception AND MIT AND Unicode-DFS-2016 AND BSD-2-Clause AND BSD-3-CLause" }
maintainers = [
Expand Down
4 changes: 2 additions & 2 deletions qoqo_qasm/qoqo_qasm/DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -14927,7 +14927,7 @@ LICENSE:


====================================================
qoqo_qasm 0.13.0
qoqo_qasm 0.13.1
https://github.com/HQSquantumsimulations/qoqo_qasm
by HQS Quantum Simulations <[email protected]>
Python interface of roqoqo_qasm by HQS Quantum Simulations
Expand Down Expand Up @@ -17697,7 +17697,7 @@ LICENSE:


====================================================
roqoqo-qasm 0.13.0
roqoqo-qasm 0.13.1
https://github.com/HQSquantumsimulations/qoqo_qasm
by HQS Quantum Simulations <[email protected]>
QASM interface for roqoqo Rust quantum computing toolkit by HQS Quantum Simulations
Expand Down
2 changes: 1 addition & 1 deletion roqoqo-qasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roqoqo-qasm"
version = "0.13.0"
version = "0.13.1"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down

0 comments on commit d8aabc5

Please sign in to comment.