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 the minimum rust version #82

Merged
merged 7 commits into from
Dec 2, 2024
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/hqs-ci-test-rust-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
jobs:
linting_rust:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_linting_rust_pyo3.yml@main

linting_python:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_linting_pure_python.yml@main
with:
with:
python_folder: "qoqo_mock"
linting_folder: "qoqo_mock"

Expand All @@ -27,10 +27,10 @@ jobs:

unittests_python:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_tests_pure_python.yml@main
with:
with:
python_folder: "qoqo_mock"
test_code_coverage: false
# Run tests also on windows runners
windows: true
# Run tests also on macos runners
macos: true
# Not run tests on macos runners because of a cc linking error
macos: false
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ This changelog track changes to the qoqo project starting at version 0.2.0

## Not released

## 0.5.9

* Added a minimum rust version.
* Updated to qoqo 1.16.

## 0.5.8

* Update qoqo to 1.15 and update readme
Expand Down
86 changes: 48 additions & 38 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ allow = [
"Apache-2.0 WITH LLVM-exception",
"BSD-3-Clause",
"BSD-2-Clause",
"Unicode-DFS-2016"
"Unicode-DFS-2016",
"Unicode-3.0"
]
# List of explicitly disallowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
Expand Down
2 changes: 1 addition & 1 deletion qoqo_mock/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "qoqo_mock"
version = "0.5.8"
version = "0.5.9"
description = ""
authors = [
{ name = "HQS Quantum Simulation GmbH", email = "[email protected]" },
Expand Down
Loading
Loading