From cabecb9758d485839bdcb00afd09bb121e6ce4a6 Mon Sep 17 00:00:00 2001 From: Mica Date: Thu, 27 Jul 2023 18:44:19 +0200 Subject: [PATCH 01/45] force string for output --- ecosystem/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecosystem/utils/utils.py b/ecosystem/utils/utils.py index 189415700d..a01e65cf8d 100644 --- a/ecosystem/utils/utils.py +++ b/ecosystem/utils/utils.py @@ -40,7 +40,7 @@ def set_actions_output(outputs: List[Tuple[str, Union[str, bool, float, int]]]) logger.info("Setting output variable %s: %s", name, value) if "CI" in os.environ: with open(os.environ["GITHUB_OUTPUT"], "a") as github_env: - github_env.write(f"{name}={value}\n") + github_env.write(f"{name}={str(value)}\n") else: # Used only during unit tests print(f"{name}={value}") From ee675cde5cd70ee784ea4370443b024deeef6829 Mon Sep 17 00:00:00 2001 From: Mica Date: Thu, 27 Jul 2023 18:45:59 +0200 Subject: [PATCH 02/45] Revert "force string for output" This reverts commit cabecb9758d485839bdcb00afd09bb121e6ce4a6. --- ecosystem/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecosystem/utils/utils.py b/ecosystem/utils/utils.py index a01e65cf8d..189415700d 100644 --- a/ecosystem/utils/utils.py +++ b/ecosystem/utils/utils.py @@ -40,7 +40,7 @@ def set_actions_output(outputs: List[Tuple[str, Union[str, bool, float, int]]]) logger.info("Setting output variable %s: %s", name, value) if "CI" in os.environ: with open(os.environ["GITHUB_OUTPUT"], "a") as github_env: - github_env.write(f"{name}={str(value)}\n") + github_env.write(f"{name}={value}\n") else: # Used only during unit tests print(f"{name}={value}") From 51c0f56a9b3b6efae3ab5e3f47ec5e9e00e10406 Mon Sep 17 00:00:00 2001 From: Mica Date: Sat, 29 Jul 2023 11:00:45 +0200 Subject: [PATCH 03/45] add assert for set_actions_output Co-authored-by: Frank Harkins --- ecosystem/utils/__init__.py | 1 + ecosystem/utils/utils.py | 2 ++ tests/utils/test_utils.py | 31 +++++++++++++++++++++++++++++-- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/ecosystem/utils/__init__.py b/ecosystem/utils/__init__.py index 542b29fb9d..62a85f1ea2 100644 --- a/ecosystem/utils/__init__.py +++ b/ecosystem/utils/__init__.py @@ -2,4 +2,5 @@ from .utils import logger from .utils import OneLineExceptionFormatter +from .utils import set_actions_output from .submission_parser import parse_submission_issue diff --git a/ecosystem/utils/utils.py b/ecosystem/utils/utils.py index 189415700d..0e3cfa9364 100644 --- a/ecosystem/utils/utils.py +++ b/ecosystem/utils/utils.py @@ -38,6 +38,8 @@ def set_actions_output(outputs: List[Tuple[str, Union[str, bool, float, int]]]) """ for name, value in outputs: logger.info("Setting output variable %s: %s", name, value) + if value is not None: + assert "\n" not in value, f"Error: Newlines in github output ({value})" if "CI" in os.environ: with open(os.environ["GITHUB_OUTPUT"], "a") as github_env: github_env.write(f"{name}={value}\n") diff --git a/tests/utils/test_utils.py b/tests/utils/test_utils.py index 723e8bd7de..92c2b56c3f 100644 --- a/tests/utils/test_utils.py +++ b/tests/utils/test_utils.py @@ -1,9 +1,10 @@ """Tests for manager.""" -import os +import os, io from unittest import TestCase +from contextlib import redirect_stdout from ecosystem.models.repository import Repository -from ecosystem.utils import parse_submission_issue +from ecosystem.utils import parse_submission_issue, set_actions_output class TestUtils(TestCase): @@ -40,3 +41,29 @@ def test_issue_parsing(self): self.assertEqual( parsed_result.labels, ["tool", "tutorial", "paper implementation"] ) + + def test_set_actions_output(self): + """Test set actions output error.""" + + # Test ok -> ok + captured_output = io.StringIO() + with redirect_stdout(captured_output): + set_actions_output([("success", "this test is a success case!")]) + output_value = captured_output.getvalue() + self.assertEqual(output_value, "success=this test is a success case!\n") + + # Test ok -> ko + with self.assertRaises(AssertionError): + set_actions_output( + [ + ( + "fail", + """ + this test is a failed case, + why ? + because it's a multi-lines output + and GITHUB_OUTPUT doesn't like that! + """, + ) + ] + ) From 97fb59f50e6b6c2a474b61031fe45983716f2369 Mon Sep 17 00:00:00 2001 From: Mica Date: Sat, 29 Jul 2023 11:02:20 +0200 Subject: [PATCH 04/45] Revert "add assert for set_actions_output" This reverts commit 51c0f56a9b3b6efae3ab5e3f47ec5e9e00e10406. --- ecosystem/utils/__init__.py | 1 - ecosystem/utils/utils.py | 2 -- tests/utils/test_utils.py | 31 ++----------------------------- 3 files changed, 2 insertions(+), 32 deletions(-) diff --git a/ecosystem/utils/__init__.py b/ecosystem/utils/__init__.py index 62a85f1ea2..542b29fb9d 100644 --- a/ecosystem/utils/__init__.py +++ b/ecosystem/utils/__init__.py @@ -2,5 +2,4 @@ from .utils import logger from .utils import OneLineExceptionFormatter -from .utils import set_actions_output from .submission_parser import parse_submission_issue diff --git a/ecosystem/utils/utils.py b/ecosystem/utils/utils.py index 0e3cfa9364..189415700d 100644 --- a/ecosystem/utils/utils.py +++ b/ecosystem/utils/utils.py @@ -38,8 +38,6 @@ def set_actions_output(outputs: List[Tuple[str, Union[str, bool, float, int]]]) """ for name, value in outputs: logger.info("Setting output variable %s: %s", name, value) - if value is not None: - assert "\n" not in value, f"Error: Newlines in github output ({value})" if "CI" in os.environ: with open(os.environ["GITHUB_OUTPUT"], "a") as github_env: github_env.write(f"{name}={value}\n") diff --git a/tests/utils/test_utils.py b/tests/utils/test_utils.py index 92c2b56c3f..723e8bd7de 100644 --- a/tests/utils/test_utils.py +++ b/tests/utils/test_utils.py @@ -1,10 +1,9 @@ """Tests for manager.""" -import os, io +import os from unittest import TestCase -from contextlib import redirect_stdout from ecosystem.models.repository import Repository -from ecosystem.utils import parse_submission_issue, set_actions_output +from ecosystem.utils import parse_submission_issue class TestUtils(TestCase): @@ -41,29 +40,3 @@ def test_issue_parsing(self): self.assertEqual( parsed_result.labels, ["tool", "tutorial", "paper implementation"] ) - - def test_set_actions_output(self): - """Test set actions output error.""" - - # Test ok -> ok - captured_output = io.StringIO() - with redirect_stdout(captured_output): - set_actions_output([("success", "this test is a success case!")]) - output_value = captured_output.getvalue() - self.assertEqual(output_value, "success=this test is a success case!\n") - - # Test ok -> ko - with self.assertRaises(AssertionError): - set_actions_output( - [ - ( - "fail", - """ - this test is a failed case, - why ? - because it's a multi-lines output - and GITHUB_OUTPUT doesn't like that! - """, - ) - ] - ) From 924ee9753db704d6375ad4b1a5510b50068a2854 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Tue, 1 Aug 2023 14:11:00 +0200 Subject: [PATCH 05/45] [CI] Dev and stable check only informational (#461) * force string for output * Revert "force string for output" This reverts commit cabecb9758d485839bdcb00afd09bb121e6ce4a6. * make stable and dev check informational + badge good when only standard * set messages * update unit tests * lint * lint * fork doesn't sync * fork sync * Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins Co-authored-by: Frank Harkins * add assert for set_actions_output Co-authored-by: Frank Harkins * Revert "add assert for set_actions_output" This reverts commit 51c0f56a9b3b6efae3ab5e3f47ec5e9e00e10406. * Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins * Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins * no regex in actions if * clear condition --------- Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 84 ++++++++++++++++------ ecosystem/manager.py | 5 +- tests/test_manager.py | 16 ++++- 3 files changed, 81 insertions(+), 24 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 24e9377cd5..b444f54efd 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -69,27 +69,31 @@ jobs: tier: ${{ env.tier }} logs_link: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} - # Check result, update issue and create MR + # Check result, update issue and create PR - name: Check return id: check-return run: | - echo "PASS_LOG=True" >> "$GITHUB_OUTPUT" - - declare -a return_list=( \ - "${{ steps.stable.outputs.result }}" \ - "${{ steps.standard.outputs.result }}" \ - "${{ steps.dev.outputs.result }}" \ - ) - for i in "${return_list[@]}"; do - if [[ "${i}" != *"True"* ]]; then - echo "PASS_LOG=False" >> "$GITHUB_OUTPUT" - fi - done - - - name: Check the check - id: check-result - run: | - echo "Pass log is ${{ steps.check-return.outputs.PASS_LOG }}" + if [[ "${{ steps.standard.outputs.result }}" == *"True"* ]]; then + echo "::notice title=StandardCheck::Success" + echo "PASS_STD=True" >> "$GITHUB_OUTPUT" + else + echo "::error title=StandardCheck::Didn't pass" + echo "PASS_STD=False" >> "$GITHUB_OUTPUT" + fi + if [[ "${{ steps.stable.outputs.result }}" == *"True"* ]]; then + echo "::notice title=StableCheck::Success" + echo "PASS_STB=True" >> "$GITHUB_OUTPUT" + else + echo "::warning title=StableCheck::Didn't pass" + echo "PASS_STB=False" >> "$GITHUB_OUTPUT" + fi + if [[ "${{ steps.dev.outputs.result }}" == *"True"* ]]; then + echo "::notice title=DevCheck::Success" + echo "PASS_DEV=True" >> "$GITHUB_OUTPUT" + else + echo "::warning title=DevCheck::Didn't pass" + echo "PASS_DEV=False" >> "$GITHUB_OUTPUT" + fi - name: Add member env: @@ -125,8 +129,8 @@ jobs: branch: submission-${{ github.event.issue.number }} base: main - - name: Create comment on success - if: ${{ steps.check-return.outputs.PASS_LOG == 'True' }} + - name: Create comment on success for standard check + if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} @@ -134,7 +138,7 @@ jobs: Successfull submission! :sparkles: PR #${{ steps.cpr.outputs.pull-request-number }} - name: Create comment on failure - if: ${{ steps.check-return.outputs.PASS_LOG == 'False' }} + if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} @@ -143,3 +147,41 @@ jobs: See logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project Read more here https://github.com/qiskit-community/ecosystem/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem + + - name: Create comment on success for stable check + if: ${{ steps.check-return.outputs.PASS_STB == 'True' }} + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: ${{ github.event.issue.number }} + body: | + Tests with latest version of Qiskit release passed! :sparkles: + + - name: Create comment on failure for stable check + if: ${{ steps.check-return.outputs.PASS_STB != 'True' }} + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: ${{ github.event.issue.number }} + body: | + Tests with latest version of Qiskit release failed! :warning: + This means your project doesn't work with the latest version of Qiskit. + This is purely informational and doesn't affect your project joining the Ecosystem, but you may want to investigate the problem. + See logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} + + - name: Create comment on success for dev check + if: ${{ steps.check-return.outputs.PASS_DEV == 'True' }} + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: ${{ github.event.issue.number }} + body: | + Tests with development version of Qiskit release passed! :sparkles: + + - name: Create comment on failure for dev check + if: ${{ steps.check-return.outputs.PASS_DEV != 'True' }} + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: ${{ github.event.issue.number }} + body: | + Tests with development version of Qiskit release failed! :warning: + This means your project might not work with the next version of Qiskit. + This is purely informational and doesn't affect your project joining Ecosystem. + See logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} diff --git a/ecosystem/manager.py b/ecosystem/manager.py index bfdc41e395..e10a474419 100644 --- a/ecosystem/manager.py +++ b/ecosystem/manager.py @@ -131,7 +131,10 @@ def update_badges(self): for tier in Tier.all(): for project in self.dao.get_repos_by_tier(tier): - tests_passed = all(result.passed for result in project.tests_results) + tests_passed = True + for type_test in project.tests_results: + if type_test.test_type == "standard" and not type_test.passed: + tests_passed = False color = "blueviolet" if tests_passed else "gray" label = project.name message = tier diff --git a/tests/test_manager.py b/tests/test_manager.py index b62ffc83f7..58446a0137 100644 --- a/tests/test_manager.py +++ b/tests/test_manager.py @@ -27,7 +27,13 @@ def get_community_repo() -> Repository: test_type=TestType.DEV_COMPATIBLE, package=Package.TERRA, package_version="0.18.0", - ) + ), + TestResult( + passed=True, + test_type=TestType.STANDARD, + package=Package.TERRA, + package_version="0.18.0", + ), ], tier=Tier.COMMUNITY, ) @@ -47,7 +53,13 @@ def get_community_fail_repo() -> Repository: test_type=TestType.DEV_COMPATIBLE, package=Package.TERRA, package_version="0.18.0", - ) + ), + TestResult( + passed=False, + test_type=TestType.STANDARD, + package=Package.TERRA, + package_version="0.18.0", + ), ], tier=Tier.COMMUNITY, ) From fe4fd4ea7621d4ed19ae4816b82aec3c79d5a126 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 3 Aug 2023 10:20:27 +0100 Subject: [PATCH 06/45] Badges and stars update for 2023_08_02_13_46 (#474) Badges and stars update Time: 2023_08_02_13_46 Co-authored-by: frankharkins --- badges/Entanglement forging.svg | 2 +- badges/kaleidoscope.svg | 2 +- badges/mitiq.svg | 2 +- badges/qiskit-classroom-converter.svg | 1 + badges/quantumcat.svg | 2 +- ecosystem/resources/members/Blueqat.toml | 2 +- ecosystem/resources/members/circuit-knitting-toolbox.toml | 2 +- ecosystem/resources/members/mitiq.toml | 2 +- ecosystem/resources/members/openqasm.toml | 2 +- ecosystem/resources/members/pytorch-quantum.toml | 2 +- ecosystem/resources/members/qBraid.toml | 2 +- ecosystem/resources/members/qiskit-aer.toml | 2 +- ecosystem/resources/members/qiskit-classroom-converter.toml | 1 + ecosystem/resources/members/qiskit-experiments.toml | 2 +- ecosystem/resources/members/qiskit-finance.toml | 2 +- ecosystem/resources/members/qiskit-ibm-provider.toml | 2 +- ecosystem/resources/members/qiskit-ibm-runtime.toml | 2 +- ecosystem/resources/members/qiskit-ionq.toml | 2 +- ecosystem/resources/members/qiskit-machine-learning.toml | 2 +- ecosystem/resources/members/qiskit-metal.toml | 2 +- ecosystem/resources/members/qiskit-nature.toml | 2 +- ecosystem/resources/members/qiskit-optimization.toml | 2 +- ecosystem/resources/members/quantum-serverless.toml | 2 +- 23 files changed, 23 insertions(+), 21 deletions(-) create mode 100644 badges/qiskit-classroom-converter.svg diff --git a/badges/Entanglement forging.svg b/badges/Entanglement forging.svg index ea481c1f71..e4021cf483 100644 --- a/badges/Entanglement forging.svg +++ b/badges/Entanglement forging.svg @@ -1 +1 @@ -Entanglement forging: ExtensionsEntanglement forgingExtensions \ No newline at end of file +Entanglement forging: ExtensionsEntanglement forgingExtensions \ No newline at end of file diff --git a/badges/kaleidoscope.svg b/badges/kaleidoscope.svg index 8d532af5b2..77fb11a40d 100644 --- a/badges/kaleidoscope.svg +++ b/badges/kaleidoscope.svg @@ -1 +1 @@ -kaleidoscope: CommunitykaleidoscopeCommunity \ No newline at end of file +kaleidoscope: CommunitykaleidoscopeCommunity \ No newline at end of file diff --git a/badges/mitiq.svg b/badges/mitiq.svg index 344063b028..6e0b7513f5 100644 --- a/badges/mitiq.svg +++ b/badges/mitiq.svg @@ -1 +1 @@ -mitiq: CommunitymitiqCommunity \ No newline at end of file +mitiq: CommunitymitiqCommunity \ No newline at end of file diff --git a/badges/qiskit-classroom-converter.svg b/badges/qiskit-classroom-converter.svg new file mode 100644 index 0000000000..320cb66025 --- /dev/null +++ b/badges/qiskit-classroom-converter.svg @@ -0,0 +1 @@ +qiskit-classroom-converter: Communityqiskit-classroom-converterCommunity \ No newline at end of file diff --git a/badges/quantumcat.svg b/badges/quantumcat.svg index 9a45a7f444..48eb95b391 100644 --- a/badges/quantumcat.svg +++ b/badges/quantumcat.svg @@ -1 +1 @@ -quantumcat: CommunityquantumcatCommunity \ No newline at end of file +quantumcat: CommunityquantumcatCommunity \ No newline at end of file diff --git a/ecosystem/resources/members/Blueqat.toml b/ecosystem/resources/members/Blueqat.toml index bcea0c5e40..97c8b219af 100644 --- a/ecosystem/resources/members/Blueqat.toml +++ b/ecosystem/resources/members/Blueqat.toml @@ -7,7 +7,7 @@ created_at = 1678827878.864396 updated_at = 1678827878.864397 tier = "Community" skip_tests = false -stars = 358 +stars = 359 [[tests_results]] test_type = "development" passed = false diff --git a/ecosystem/resources/members/circuit-knitting-toolbox.toml b/ecosystem/resources/members/circuit-knitting-toolbox.toml index 5a40fb44dc..4853773ebf 100644 --- a/ecosystem/resources/members/circuit-knitting-toolbox.toml +++ b/ecosystem/resources/members/circuit-knitting-toolbox.toml @@ -12,7 +12,7 @@ coverages_results = [] tier = "Extensions" skip_tests = true historical_test_results = [] -stars = 44 +stars = 46 [[tests_results]] test_type = "development" passed = false diff --git a/ecosystem/resources/members/mitiq.toml b/ecosystem/resources/members/mitiq.toml index f6eec965e1..a6c9ea44f4 100644 --- a/ecosystem/resources/members/mitiq.toml +++ b/ecosystem/resources/members/mitiq.toml @@ -7,7 +7,7 @@ created_at = 1678827878.932437 updated_at = 1678827878.932437 tier = "Community" skip_tests = false -stars = 272 +stars = 274 [[tests_results]] test_type = "development" passed = false diff --git a/ecosystem/resources/members/openqasm.toml b/ecosystem/resources/members/openqasm.toml index 0f678b9215..d27bb04a8b 100644 --- a/ecosystem/resources/members/openqasm.toml +++ b/ecosystem/resources/members/openqasm.toml @@ -15,4 +15,4 @@ coverages_results = [] tier = "Main" skip_tests = true historical_test_results = [] -stars = 1006 +stars = 1011 diff --git a/ecosystem/resources/members/pytorch-quantum.toml b/ecosystem/resources/members/pytorch-quantum.toml index 6cb542a6e8..01bacde8a9 100644 --- a/ecosystem/resources/members/pytorch-quantum.toml +++ b/ecosystem/resources/members/pytorch-quantum.toml @@ -7,7 +7,7 @@ created_at = 1678827878.611621 updated_at = 1678827878.611622 tier = "Community" skip_tests = false -stars = 756 +stars = 759 [[tests_results]] test_type = "development" passed = false diff --git a/ecosystem/resources/members/qBraid.toml b/ecosystem/resources/members/qBraid.toml index f4569474b8..36d4b1e1d1 100644 --- a/ecosystem/resources/members/qBraid.toml +++ b/ecosystem/resources/members/qBraid.toml @@ -15,4 +15,4 @@ coverages_results = [] tier = "Community" skip_tests = false historical_test_results = [] -stars = 31 +stars = 36 diff --git a/ecosystem/resources/members/qiskit-aer.toml b/ecosystem/resources/members/qiskit-aer.toml index 0c6aa47ca1..ddf79af8f7 100644 --- a/ecosystem/resources/members/qiskit-aer.toml +++ b/ecosystem/resources/members/qiskit-aer.toml @@ -11,4 +11,4 @@ tests_results = [] styles_results = [] coverages_results = [] skip_tests = true -stars = 380 +stars = 383 diff --git a/ecosystem/resources/members/qiskit-classroom-converter.toml b/ecosystem/resources/members/qiskit-classroom-converter.toml index 87faaaf4dc..0a149a11e0 100644 --- a/ecosystem/resources/members/qiskit-classroom-converter.toml +++ b/ecosystem/resources/members/qiskit-classroom-converter.toml @@ -13,3 +13,4 @@ styles_results = [] coverages_results = [] skip_tests = false historical_test_results = [] +stars = 0 diff --git a/ecosystem/resources/members/qiskit-experiments.toml b/ecosystem/resources/members/qiskit-experiments.toml index ce8ad03c7c..be76d3e190 100644 --- a/ecosystem/resources/members/qiskit-experiments.toml +++ b/ecosystem/resources/members/qiskit-experiments.toml @@ -9,4 +9,4 @@ url = "https://github.com/Qiskit-Extensions/qiskit-experiments" website = "https://qiskit.org/ecosystem/experiments/" tests_results = [] skip_tests = true -stars = 115 +stars = 116 diff --git a/ecosystem/resources/members/qiskit-finance.toml b/ecosystem/resources/members/qiskit-finance.toml index 812e53ed9f..247863d4a8 100644 --- a/ecosystem/resources/members/qiskit-finance.toml +++ b/ecosystem/resources/members/qiskit-finance.toml @@ -11,4 +11,4 @@ tests_results = [] styles_results = [] coverages_results = [] skip_tests = true -stars = 169 +stars = 170 diff --git a/ecosystem/resources/members/qiskit-ibm-provider.toml b/ecosystem/resources/members/qiskit-ibm-provider.toml index 6ca5e0fdc1..51af9bf750 100644 --- a/ecosystem/resources/members/qiskit-ibm-provider.toml +++ b/ecosystem/resources/members/qiskit-ibm-provider.toml @@ -13,7 +13,7 @@ styles_results = [] coverages_results = [] tier = "Main" skip_tests = true -stars = 56 +stars = 57 [configuration] dependencies_files = [ "requirements.txt", "requirements-dev.txt",] diff --git a/ecosystem/resources/members/qiskit-ibm-runtime.toml b/ecosystem/resources/members/qiskit-ibm-runtime.toml index 41ed94391b..37cb2247a8 100644 --- a/ecosystem/resources/members/qiskit-ibm-runtime.toml +++ b/ecosystem/resources/members/qiskit-ibm-runtime.toml @@ -13,4 +13,4 @@ styles_results = [] coverages_results = [] tier = "Main" skip_tests = true -stars = 85 +stars = 87 diff --git a/ecosystem/resources/members/qiskit-ionq.toml b/ecosystem/resources/members/qiskit-ionq.toml index 154701aa02..39269bcd8c 100644 --- a/ecosystem/resources/members/qiskit-ionq.toml +++ b/ecosystem/resources/members/qiskit-ionq.toml @@ -11,7 +11,7 @@ styles_results = [] coverages_results = [] tier = "Community" skip_tests = false -stars = 29 +stars = 30 [[tests_results]] test_type = "development" passed = true diff --git a/ecosystem/resources/members/qiskit-machine-learning.toml b/ecosystem/resources/members/qiskit-machine-learning.toml index c27f6a5590..5db0ede4c8 100644 --- a/ecosystem/resources/members/qiskit-machine-learning.toml +++ b/ecosystem/resources/members/qiskit-machine-learning.toml @@ -11,4 +11,4 @@ tests_results = [] styles_results = [] coverages_results = [] skip_tests = true -stars = 468 +stars = 473 diff --git a/ecosystem/resources/members/qiskit-metal.toml b/ecosystem/resources/members/qiskit-metal.toml index 77c0c88a85..016e26332f 100644 --- a/ecosystem/resources/members/qiskit-metal.toml +++ b/ecosystem/resources/members/qiskit-metal.toml @@ -8,4 +8,4 @@ updated_at = 1628883441.119205 url = "https://github.com/qiskit-community/qiskit-metal" tests_results = [] skip_tests = true -stars = 238 +stars = 240 diff --git a/ecosystem/resources/members/qiskit-nature.toml b/ecosystem/resources/members/qiskit-nature.toml index b4327eb2c4..1d1ffaa5cb 100644 --- a/ecosystem/resources/members/qiskit-nature.toml +++ b/ecosystem/resources/members/qiskit-nature.toml @@ -11,4 +11,4 @@ tests_results = [] styles_results = [] coverages_results = [] skip_tests = true -stars = 234 +stars = 236 diff --git a/ecosystem/resources/members/qiskit-optimization.toml b/ecosystem/resources/members/qiskit-optimization.toml index 00cbbe623e..c2f4c3b96b 100644 --- a/ecosystem/resources/members/qiskit-optimization.toml +++ b/ecosystem/resources/members/qiskit-optimization.toml @@ -11,4 +11,4 @@ tests_results = [] styles_results = [] coverages_results = [] skip_tests = true -stars = 172 +stars = 174 diff --git a/ecosystem/resources/members/quantum-serverless.toml b/ecosystem/resources/members/quantum-serverless.toml index 59656f5d4d..88d2488471 100644 --- a/ecosystem/resources/members/quantum-serverless.toml +++ b/ecosystem/resources/members/quantum-serverless.toml @@ -12,7 +12,7 @@ coverages_results = [] tier = "Extensions" skip_tests = true historical_test_results = [] -stars = 30 +stars = 32 [[tests_results]] test_type = "development" passed = false From b47e815e2f56db394492f128a746f2e175bd4943 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 3 Aug 2023 09:21:10 +0000 Subject: [PATCH 07/45] Recompile members.json --- ecosystem/resources/members.json | 37 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 9d54114dbb..2fb3c41b48 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -12,7 +12,7 @@ "updated_at": 1678827878.864397, "tier": "Community", "skip_tests": false, - "stars": 358, + "stars": 359, "tests_results": [ { "test_type": "development", @@ -327,7 +327,8 @@ "styles_results": [], "coverages_results": [], "skip_tests": false, - "historical_test_results": [] + "historical_test_results": [], + "stars": 0 }, "2": { "created_at": 1636403010.012954, @@ -346,7 +347,7 @@ "styles_results": [], "coverages_results": [], "skip_tests": true, - "stars": 468 + "stars": 473 }, "3": { "created_at": 1636403009.538761, @@ -365,7 +366,7 @@ "styles_results": [], "coverages_results": [], "skip_tests": true, - "stars": 172 + "stars": 174 }, "4": { "name": "kaleidoscope", @@ -1155,7 +1156,7 @@ "styles_results": [], "coverages_results": [], "skip_tests": true, - "stars": 234 + "stars": 236 }, "10": { "name": "quantumcat", @@ -1617,7 +1618,7 @@ "updated_at": 1678827878.611622, "tier": "Community", "skip_tests": false, - "stars": 756, + "stars": 759, "tests_results": [ { "test_type": "development", @@ -2588,7 +2589,7 @@ "updated_at": 1678827878.932437, "tier": "Community", "skip_tests": false, - "stars": 272, + "stars": 274, "tests_results": [ { "test_type": "development", @@ -3009,7 +3010,7 @@ "tier": "Community", "skip_tests": false, "historical_test_results": [], - "stars": 31 + "stars": 36 }, "24": { "created_at": 1636403009.368607, @@ -3028,7 +3029,7 @@ "styles_results": [], "coverages_results": [], "skip_tests": true, - "stars": 169 + "stars": 170 }, "25": { "name": "c3", @@ -3766,7 +3767,7 @@ "url": "https://github.com/qiskit-community/qiskit-metal", "tests_results": [], "skip_tests": true, - "stars": 238 + "stars": 240 }, "31": { "name": "qiskit-rigetti", @@ -4452,7 +4453,7 @@ "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 29, + "stars": 30, "tests_results": [ { "test_type": "development", @@ -5701,7 +5702,7 @@ "coverages_results": [], "tier": "Main", "skip_tests": true, - "stars": 56, + "stars": 57, "configuration": { "dependencies_files": [ "requirements.txt", @@ -5743,7 +5744,7 @@ "tier": "Main", "skip_tests": true, "historical_test_results": [], - "stars": 1006 + "stars": 1011 }, "2": { "created_at": 1636403010.377695, @@ -5761,7 +5762,7 @@ "styles_results": [], "coverages_results": [], "skip_tests": true, - "stars": 380 + "stars": 383 }, "3": { "name": "qiskit-ibm-runtime", @@ -5782,7 +5783,7 @@ "coverages_results": [], "tier": "Main", "skip_tests": true, - "stars": 85 + "stars": 87 } }, "Extensions": { @@ -6342,7 +6343,7 @@ "website": "https://qiskit.org/ecosystem/experiments/", "tests_results": [], "skip_tests": true, - "stars": 115 + "stars": 116 }, "3": { "name": "qiskit-research", @@ -6398,7 +6399,7 @@ "tier": "Extensions", "skip_tests": true, "historical_test_results": [], - "stars": 30, + "stars": 32, "tests_results": [ { "test_type": "development", @@ -6447,7 +6448,7 @@ "tier": "Extensions", "skip_tests": true, "historical_test_results": [], - "stars": 44, + "stars": 46, "tests_results": [ { "test_type": "development", From 7c9556745f97130976031a46b67b8b30553357ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Thu, 3 Aug 2023 18:17:09 +0000 Subject: [PATCH 08/45] Recompile members.json --- ecosystem/resources/members.json | 7016 +++++++++++++++--------------- 1 file changed, 3508 insertions(+), 3508 deletions(-) diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 2fb3c41b48..19b32b05da 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -1,18 +1,18 @@ { "Community": { "0": { - "name": "Blueqat", - "url": "https://github.com/Blueqat/Blueqat", - "description": "A quantum computing SDK", + "name": "quantuminspire", + "url": "https://github.com/QuTech-Delft/quantuminspire", + "description": "platform allows to execute quantum algorithms using the cQASM language.", "licence": "Apache 2.0", "labels": [ - "convert" + "algorithms" ], - "created_at": 1678827878.864396, - "updated_at": 1678827878.864397, + "created_at": 1678827878.401835, + "updated_at": 1678827878.401836, "tier": "Community", "skip_tests": false, - "stars": 359, + "stars": 57, "tests_results": [ { "test_type": "development", @@ -20,9 +20,18 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.855712, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" + "timestamp": 1678827878.393127, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.393133, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" }, { "test_type": "stable", @@ -30,8 +39,8 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.853724, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" + "timestamp": 1678827878.393136, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" }, { "test_type": "standard", @@ -39,8 +48,8 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.855721, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" + "timestamp": 1678827878.391164, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" } ], "styles_results": [ @@ -52,25 +61,25 @@ "coverages_results": [ { "coverage_type": "", - "passed": false + "passed": true } ], "historical_test_results": [ { - "test_type": "development", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.864336 + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.401772 }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.864341 + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.401778 }, { "test_type": "stable", @@ -78,107 +87,107 @@ "package": "qiskit-terra", "package_version": "0.20.2", "terra_version": "0.20.2", - "timestamp": 1678827878.864343 + "timestamp": 1678827878.40178 }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.864346, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" + "timestamp": 1678827878.401782, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.864348, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" + "timestamp": 1678827878.401785, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.86435, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" + "timestamp": 1678827878.401787, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.864353, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" + "timestamp": 1678827878.401789, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.864355, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920109", + "timestamp": 1678827878.401792, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919652", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.864357, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638641" + "timestamp": 1678827878.401794, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638229" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.864359, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638640" + "timestamp": 1678827878.401796, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638217" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.864362, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319732917" + "timestamp": 1678827878.401798, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224170" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.864364, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224539" + "timestamp": 1678827878.4018, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224153" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.864366, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952019" + "timestamp": 1678827878.401803, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951415" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.864368, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951991" + "timestamp": 1678827878.401805, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951365" }, { "test_type": "development", @@ -186,45 +195,45 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.86437, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703336", + "timestamp": 1678827878.401807, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702185", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.864373, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703323" + "timestamp": 1678827878.401809, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702004" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.864375, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703183" + "timestamp": 1678827878.401812, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701988" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.864377, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627601" + "timestamp": 1678827878.401814, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626686" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.864379, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627633" + "timestamp": 1678827878.401816, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" }, { "test_type": "stable", @@ -232,17 +241,17 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.864381, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482988" + "timestamp": 1678827878.401818, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482051" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.864384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021814" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.40182, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481946" }, { "test_type": "standard", @@ -250,36 +259,45 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.864386, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021797" + "timestamp": 1678827878.401823, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021022" }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.864388, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.401825, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021114" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.86439, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" + "timestamp": 1678827878.401827, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" }, { - "test_type": "stable", + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.401829, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.853724, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" + "timestamp": 1678827878.391164, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" } ], "configuration": { @@ -287,20 +305,18 @@ "requirements.txt" ], "extra_dependencies": [ - "qiskit", - "Cython", "coverage", - "pylint" + "pylint", + "qiskit" ], "tests_command": [ - "pytest" + "pytest src/tests" ], "styles_check_command": [ - "pylint -rn blueqat tests" + "pylint -rn src" ], "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" + "coverage run --source=\"./src/quantuminspire\" -m unittest discover -s src/tests -t src -v" ], "language": { "name": "python", @@ -311,272 +327,273 @@ } }, "1": { - "name": "qiskit-classroom-converter", - "url": "https://github.com/KMU-quantum-classroom/qiskit-classroom-converter", - "description": "Convert quantum circuits, matrices, and bra-ket strings. This converter includes the following conversion functions: quantum circuit to bra-ket notation, quantum circuit to matrix, matrix to quantum circuit, bra-ket notation to matrix", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "_No response_", + "name": "QuantumCircuits.jl", + "url": "https://github.com/Adgnitio/QuantumCircuits.jl", + "description": "QuantumCircuits is an open-source library written in Julia for working with quantum computers at the application level, especially for Quantum Finance and Quantum Machine Learning. It allows to creation and manipulation of the quantum circuits and executes them in Julia or convert them to Qiskit Python object. The library also contains the Quantum Binomial Tree implementation for derivative pricing.", + "licence": "GNU General Public License (GPL)", + "contact_info": "rafal.pracht@adgnitio.com", + "alternatives": "qiskit-finance, qiskit-machine-learning, Yao", "labels": [ - "converter" + "paper implementation", + "machine learning", + "finance" ], - "tier": "Community", - "website": "https://github.com/KMU-quantum-classroom", - "tests_results": [], + "created_at": 1678827878.254124, + "updated_at": 1678827878.254125, "styles_results": [], "coverages_results": [], + "tier": "Community", "skip_tests": false, - "historical_test_results": [], - "stars": 0 - }, - "2": { - "created_at": 1636403010.012954, - "description": "The Machine Learning package contains sample datasets and quantum ML algorithms.", - "labels": [ - "algorithms", - "machine learning" - ], - "licence": "Apache 2.0", - "name": "qiskit-machine-learning", - "tier": "Community", - "updated_at": 1636403010.012956, - "url": "https://github.com/qiskit-community/qiskit-machine-learning", - "website": "https://qiskit.org/ecosystem/machine-learning", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "stars": 473 - }, - "3": { - "created_at": 1636403009.538761, - "description": "Framework that covers the whole range from high-level modeling of optimization problems, with automatic conversion of problems to different required representations, to a suite of easy-to-use quantum optimization algorithms that are ready to run on classical simulators, as well as on real quantum devices via Qiskit.", - "labels": [ - "algorithms", - "optimization" - ], - "licence": "Apache 2.0", - "name": "qiskit-optimization", - "tier": "Community", - "updated_at": 1636403009.538763, - "url": "https://github.com/qiskit-community/qiskit-optimization", - "website": "https://qiskit.org/ecosystem/optimization", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "stars": 174 - }, - "4": { - "name": "kaleidoscope", - "url": "https://github.com/QuSTaR/kaleidoscope", - "description": "Kaleidoscope", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "plugin" - ], - "created_at": 1678827878.7097, - "updated_at": 1678827878.709701, - "tier": "Community", - "skip_tests": false, - "stars": 19, + "stars": 0, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.698999, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.252147, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.700973, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3683924960" - }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.700976, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254106, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.700979, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254109, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" } ], "historical_test_results": [ { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.709635 + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254117, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.709641 + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254119, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.709643 - }, + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.252147, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + } + ] + }, + "2": { + "name": "diskit", + "url": "https://github.com/Interlin-q/diskit", + "description": "Distributed quantum computing is a concept that proposes to connect multiple quantum computers in a network to leverage a collection of more, but physically separated, qubits. In order to perform distributed quantum computing, it is necessary to add the addition of classical communication and entanglement distribution so that the control information from one qubit can be applied to another that is located on another quantum computer. For more details on distributed quantum computing, see this blog post: [Distributed Quantum Computing: A path to large scale quantum computing](https://medium.com/@stephen.diadamo/distributed-quantum-computing-1c5d38a34c50) In this project, we aim to validate distributed quantum algorithms using Qiskit. Because Qiskit does not yet come with networking features, we embed a \"virtual network topology\" into large circuits to mimic distributed quantum computing. The idea is to take a monolithic quantum circuit developed in the Qiskit language and distribute the circuit according to an artificially segmented version of a quantum processor. The inputs to the library are a quantum algorithm written monolithically (i.e., in a single circuit) and a topology parameter that represents the artificial segmentation of the single quantum processor. The algorithm takes these two inputs and remaps the Qiskit circuit to the specified segmentation, adding all necessary steps to perform an equivalent distributed quantum circuit. Our algorithm for achieving this is based on the work: [Distributed Quantum Computing and Network Control for Accelerated VQE](https://ieeexplore.ieee.org/document/9351762). The algorithm output is another Qiskit circuit with the equivalent measurement statistics but with all of the additional logic needed to perform a distributed version.", + "licence": "Apache License 2.0", + "contact_info": "stephen.diadamo@gmail.com, anuranan.fifa14@gmail.com", + "alternatives": "Interlin-q: https://github.com/Interlin-q/Interlin-q A similar library but uses QuNetSim to simulate the network communication for distributed quantum computing.", + "labels": [ + "plugin", + "circuit", + "converter" + ], + "created_at": 1678827878.415704, + "updated_at": 1678827878.415704, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "historical_test_results": [], + "stars": 4, + "tests_results": [ { - "test_type": "standard", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.709645, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.413669, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048174", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.709647, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.415684, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048144" }, { "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.70965, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" - }, - { - "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.709652, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" - }, + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.415689, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048071" + } + ] + }, + "3": { + "name": "qiskit-nature-pyscf-dft-embedding", + "url": "https://github.com/mrossinek/qiskit-nature-pyscf-dft-embedding", + "description": "This repository contains the latest prototype implementation of the Qiskit Nature + PySCF DFT Embedding. It is based on the following publication: > Max Rossmannek, Panagiotis Kl. Barkoutsos, Pauline J. Ollitrault, Ivano Tavernelli; > Quantum HF/DFT-embedding algorithms for electronic structure calculations: Scaling up to complex molecular systems. > J. Chem. Phys. 21 March 2021; 154 (11): 114105.", + "licence": "Apache License 2.0", + "contact_info": "oss@zurich.ibm.com", + "alternatives": "_No response_", + "affiliations": "_No response_", + "labels": [ + "plugin", + "algorithms", + "chemistry" + ], + "created_at": 1685540348.208874, + "updated_at": 1685540348.208879, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "historical_test_results": [], + "stars": 3 + }, + "4": { + "name": "RasQberry", + "url": "https://github.com/JanLahmann/RasQberry", + "description": "RasQberry is a functional model of IBM Quantum System One, and can run Qiskit on the integrated Raspberry Pi", + "licence": "Apache License 2.0", + "contact_info": "Jan.lahmann@de.ibm.com", + "alternatives": "_No response_", + "labels": [ + "game" + ], + "created_at": 1674598082.072493, + "updated_at": 1674598082.072494, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": true, + "historical_test_results": [], + "stars": 120 + }, + "5": { + "name": "dsm-swap", + "url": "https://github.com/qiskit-community/dsm-swap", + "description": "A doubly stochastic matrices-based approach to optimal qubit routing", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "labels": [ + "plugin", + "paper implementation", + "circuit" + ], + "created_at": 1678827878.56605, + "updated_at": 1678827878.566051, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "stars": 7, + "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.709654, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919383", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.566001, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.709656, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637966" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.56399, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.709659, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638009" - }, + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.566009, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" + } + ], + "historical_test_results": [ { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.709661, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223971" + "timestamp": 1678827878.566015, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225626" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.709663, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223985" + "timestamp": 1678827878.566017, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225632" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.709665, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951084" + "timestamp": 1678827878.56602, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953428" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.709668, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951050" + "timestamp": 1678827878.566022, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953451" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.70967, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701441" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.709672, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701574", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "timestamp": 1678827878.566024, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705002" }, { "test_type": "stable", @@ -584,17 +601,18 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.709674, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701523" + "timestamp": 1678827878.566027, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705033" }, { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.709677, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626207" + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.566029, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705078", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", @@ -602,17 +620,17 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.709679, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626228" + "timestamp": 1678827878.566031, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629546" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.709681, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481624" + "timestamp": 1678827878.566033, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485251" }, { "test_type": "stable", @@ -620,17 +638,17 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.709683, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481674" + "timestamp": 1678827878.566036, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485304" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.709688, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020677" + "timestamp": 1678827878.566038, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023555" }, { "test_type": "stable", @@ -638,568 +656,423 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.70969, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020708" + "timestamp": 1678827878.56604, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023565" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.709692, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.566042, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.709695, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" + "timestamp": 1678827878.566044, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" }, { - "test_type": "development", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.698999, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - } - ], - "configuration": { - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint" - ], - "tests_command": [ - "pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit" - ], - "styles_check_command": [ - "pylint -rn kaleidoscope" - ], - "coverages_check_command": [ - "coverage3 -m pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.56399, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" } - } - }, - "5": { - "name": "RasQberry", - "url": "https://github.com/JanLahmann/RasQberry", - "description": "RasQberry is a functional model of IBM Quantum System One, and can run Qiskit on the integrated Raspberry Pi", - "licence": "Apache License 2.0", - "contact_info": "Jan.lahmann@de.ibm.com", - "alternatives": "_No response_", - "labels": [ - "game" - ], - "created_at": 1674598082.072493, - "updated_at": 1674598082.072494, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": true, - "historical_test_results": [], - "stars": 120 + ] }, "6": { - "name": "qiskit-cold-atom", - "url": "https://github.com/qiskit-community/qiskit-cold-atom", - "description": "This project builds on this functionality to describe programmable quantum simulators of trapped cold atoms in a gate- and circuit-based framework.", + "name": "c3", + "url": "https://github.com/q-optimize/c3", + "description": "The C3 package is intended to close the loop between open-loop control optimization, control pulse calibration, and model-matching based on calibration data.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ - "provider" + "plugin" ], - "created_at": 1678827878.507531, - "updated_at": 1678827878.507532, - "styles_results": [], - "coverages_results": [], + "created_at": 1678827878.240528, + "updated_at": 1678827878.240528, "tier": "Community", "skip_tests": false, - "stars": 22, + "stars": 56, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.496921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", + "timestamp": 1678827878.229887, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.498896, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.231853, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469022488" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.498899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" + "timestamp": 1678827878.231856, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.498902, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" + "timestamp": 1678827878.231858, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" } ], - "historical_test_results": [ - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.507478, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" - }, + "styles_results": [ { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.507483, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" - }, + "style_type": "pylint", + "passed": true + } + ], + "coverages_results": [ { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.507486, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920905", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" - }, + "coverage_type": "", + "passed": true + } + ], + "historical_test_results": [ { "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.507488, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639328" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.50749, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639358" - }, - { - "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.507492, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225772" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.240462 }, { - "test_type": "standard", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.507494, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225754" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.240467 }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.507497, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953898" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.240469 }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.507499, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953919" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.507501, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705694" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.240472, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.507503, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705604" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.240474, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.507505, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705583" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.240477, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.507508, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630594" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.240479, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" }, { - "test_type": "stable", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.50751, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630688" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.240481, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180918979", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.507512, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485912" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.240483, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637724" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.507514, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485977" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.240486, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637748" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.507519, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024143" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.240488, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223753" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.507521, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024081" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.24049, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223761" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.507523, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.240492, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950511" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.507525, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.240495, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950486" }, { - "test_type": "development", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.496921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - } - ], - "configuration": { - "dependencies_files": [ - "requirements-dev.txt" - ], - "extra_dependencies": [], - "tests_command": [ - "stestr run" - ], - "styles_check_command": [ - "pylint -rn -j 0 --rcfile=./.pylintrc qiskit_cold_atom/ test/" - ], - "coverages_check_command": [], - "language": { - "name": "python", - "versions": [ - "3.7" - ] - } - } - }, - "7": { - "name": "pyEPR", - "url": "https://github.com/zlatko-minev/pyEPR", - "description": "Qiskit Metal E&M analysis with Ansys and the energy-participation-ratio method is based on pyEPR.", - "licence": "BSD 3-Clause New or Revised license", - "contact_info": "zlatko.minev@ibm.com", - "alternatives": "", - "labels": [ - "plugin" - ], - "created_at": 1662470654.437653, - "updated_at": 1662470654.437655, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": true, - "historical_test_results": [], - "stars": 137, - "configuration": { - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint" - ], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn pyEPR" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] - } - } - }, - "8": { - "name": "q-kernel-ops", - "url": "https://github.com/Travis-S-IBM/q-kernel-ops", - "description": "Code base on the paper Kernel Matrix Completion for Offline Quantum-Enhanced Machine Learning [2112.08449](https://arxiv.org/abs/2112.08449).", - "licence": "Apache 2.0", - "contact_info": "### Email", - "alternatives": "### Alternatives", - "labels": [ - "QAMP" - ], - "created_at": 1678827878.663275, - "updated_at": 1678827878.663276, - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "stars": 3, - "tests_results": [ + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.240497, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700830" + }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663244, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.240499, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700868" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663249, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.240501, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700942", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.661149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" - } - ], - "historical_test_results": [ + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.240503, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625453" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.240506, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625536" + }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.663257, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654390" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.240508, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481181" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.66326, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654418" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.24051, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481227" }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.663262, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654437", - "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.240512, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020187" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663267, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.240516, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020171" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663269, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.240519, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.661149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.240521, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.229887, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } - ] - }, - "9": { - "created_at": 1636403009.16708, - "description": "Qiskit Nature allows researchers and developers in different areas of natural sciences (including physics, chemistry, material science and biology) to model and solve domain-specific problems using quantum simulations", - "labels": [ - "algorithms", - "physics", - "chemistry" ], - "licence": "Apache 2.0", - "name": "qiskit-nature", - "tier": "Community", - "updated_at": 1636403009.167082, - "url": "https://github.com/qiskit-community/qiskit-nature", - "website": "https://qiskit.org/ecosystem/nature", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "stars": 236 + "configuration": { + "dependencies_files": [ + "requirements.txt" + ], + "extra_dependencies": [ + "qiskit", + "coverage", + "pylint", + "black" + ], + "tests_command": [ + "pytest -v -x -m \"not slow\" test/", + "pytest -v -x -m \"slow\" test/" + ], + "styles_check_command": [ + "black --check c3/" + ], + "coverages_check_command": [ + "pytest -x -v --cov=c3 --cov-report=xml test/" + ], + "language": { + "name": "python", + "versions": [ + "3.7", + "3.8", + "3.9" + ] + } + } }, - "10": { - "name": "quantumcat", - "url": "https://github.com/artificial-brain/quantumcat", - "description": "quantumcat is a platform-independent, open-source, high-level quantum computing library, which allows the quantum community to focus on developing platform-independent quantum applications without much effort", + "7": { + "name": "qtcodes", + "url": "https://github.com/yaleqc/qtcodes", + "description": "Qiskit Topological Codes", "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", "labels": [ - "algorithms", - "converter" + "plugin" ], - "created_at": 1678827878.289276, - "updated_at": 1678827878.289277, + "created_at": 1678827878.827901, + "updated_at": 1678827878.827902, "tier": "Community", "skip_tests": false, - "stars": 20, + "stars": 82, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.280528, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", + "timestamp": 1678827878.819181, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.819186, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" + }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.278608, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" + "timestamp": 1678827878.819189, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.17.4", - "terra_version": "0.17.4", - "timestamp": 1678827878.280536, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.817194, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" } ], "styles_results": [ @@ -1216,263 +1089,165 @@ ], "historical_test_results": [ { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.289239 - }, - { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.17.4", - "terra_version": "0.17.4", - "timestamp": 1678827878.289244, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938614" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.827841 }, { "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.289247, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920000", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.28925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638565" - }, - { - "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.289252, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224447" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.827846 }, { "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.289254, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951857" - }, - { - "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.289257, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703088", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.827849 }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.289259, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703035" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.827851, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.289261, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627419" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.827854, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.289264, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482715" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.827856, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.289266, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021726" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.827858, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" }, { - "test_type": "standard", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.17.4", - "terra_version": "0.17.4", - "timestamp": 1678827878.289268, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.827861, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919232", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "development", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.28927, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.827863, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919153" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.278608, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" - } - ], - "configuration": { - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint" - ], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn quantumcat tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] - } - } - }, - "11": { - "name": "Qiskit Nature PySCF", - "url": "https://github.com/qiskit-community/qiskit-nature-pyscf", - "description": "Qiskit Nature PySCF is a third-party integration plugin of Qiskit Nature and PySCF.", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "labels": [ - "plugin", - "chemistry" - ], - "created_at": 1678827878.723733, - "updated_at": 1678827878.723734, - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "stars": 13, - "tests_results": [ + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.827865, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637904" + }, { - "test_type": "development", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.721648, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.827867, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223904" }, { - "test_type": "last passing version", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723691, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.827869, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223902" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723694, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.827871, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950844" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723697, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" - } - ], - "historical_test_results": [ + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.827874, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950941" + }, { "test_type": "development", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.723702, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705234", + "timestamp": 1678827878.827876, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701356", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.723705, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705147" + "timestamp": 1678827878.827878, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701333" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.723707, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705182" + "timestamp": 1678827878.82788, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701250" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.723709, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629837" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0rc1", - "terra_version": "0.23.0rc1", - "timestamp": 1678827878.723711, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629761" + "timestamp": 1678827878.827882, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625932" }, { "test_type": "stable", @@ -1480,8 +1255,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.723714, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485540" + "timestamp": 1678827878.827885, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481542" }, { "test_type": "standard", @@ -1489,8 +1264,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.723716, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485468" + "timestamp": 1678827878.827887, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481466" }, { "test_type": "stable", @@ -1498,8 +1273,8 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.723718, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023779" + "timestamp": 1678827878.827889, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020538" }, { "test_type": "standard", @@ -1507,17 +1282,8 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.72372, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023690" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723725, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" + "timestamp": 1678827878.827891, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020492" }, { "test_type": "stable", @@ -1525,8 +1291,8 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.723727, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" + "timestamp": 1678827878.827893, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" }, { "test_type": "development", @@ -1534,36 +1300,55 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.721648, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", + "timestamp": 1678827878.827895, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.817194, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" } - ] - }, - "12": { - "name": "purplecaffeine", - "url": "https://github.com/IceKhan13/purplecaffeine", - "description": "Project is aimed to create simple general interface to track quantum experiments, store and search them in an easy way.", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "QAMP", - "website": "https://icekhan13.github.io/purplecaffeine/index.html", - "labels": [ - "plugin", - "notebook" ], - "created_at": 1688661859.080258, - "updated_at": 1688661859.080264, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "historical_test_results": [], - "stars": 6 + "configuration": { + "dependencies_files": [], + "extra_dependencies": [ + "qiskit", + "coverage", + "pylint", + "numpy", + "matplotlib>=3.3.0", + "retworkx>=0.10.0", + "tqdm", + "pylatexenc", + "IPython", + "mypy", + "black", + "pytest" + ], + "tests_command": [ + "python -m unittest" + ], + "styles_check_command": [ + "pylint -rn qtcodes" + ], + "coverages_check_command": [ + "coverage3 -m pytest", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] + } + } }, - "13": { + "8": { "name": "qiskit-symb", "url": "https://github.com/SimoneGasperini/qiskit-symb", "description": "Easy-to-use Python package designed to enable symbolic quantum computation in Qiskit. It provides the basic tools for the symbolic evaluation of statevectors, density matrices, and unitary operators directly created from parametric Qiskit quantum circuits. The implementation is based on the Sympy library as backend for symbolic expressions manipulation.", @@ -1606,47 +1391,57 @@ } } }, - "14": { - "name": "pytorch-quantum", - "url": "https://github.com/mit-han-lab/pytorch-quantum", - "description": "A PyTorch-centric hybrid classical-quantum dynamic neural networks framework.", + "9": { + "name": "qiskit-superstaq", + "url": "https://github.com/SupertechLabs/qiskit-superstaq", + "description": "This package is used to access SuperstaQ via a Web API through Qiskit. Qiskit programmers can take advantage of the applications, pulse level optimizations, and write-once-target-all features of SuperstaQ with this package.", "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", "labels": [ - "machine learning" + "plugin" ], - "created_at": 1678827878.611621, - "updated_at": 1678827878.611622, + "created_at": 1678827878.760089, + "updated_at": 1678827878.76009, "tier": "Community", "skip_tests": false, - "stars": 759, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.602838, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", + "timestamp": 1678827878.751285, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.760098, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" + }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.602844, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" + "timestamp": 1678827878.749304, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.60056, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.751296, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" } ], "styles_results": [ @@ -1658,69 +1453,26 @@ "coverages_results": [ { "coverage_type": "", - "passed": false + "passed": true } ], "historical_test_results": [ - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.611555 - }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.611561 + "timestamp": 1678827878.760048 }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.20.2", "terra_version": "0.20.2", - "timestamp": 1678827878.611563 - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.611566, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.611568, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.61157, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.611572, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" + "timestamp": 1678827878.760053, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938222" }, { "test_type": "development", @@ -1728,8 +1480,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.611577, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920482", + "timestamp": 1678827878.760056, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919098", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -1738,26 +1490,8 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.611579, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638971" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.18.3", - "terra_version": "0.18.3", - "timestamp": 1678827878.611581, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319733310" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.611584, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224766" + "timestamp": 1678827878.760058, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637871" }, { "test_type": "stable", @@ -1765,17 +1499,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.611586, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224775" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.611588, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952548" + "timestamp": 1678827878.76006, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223849" }, { "test_type": "stable", @@ -1783,138 +1508,118 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.61159, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952575" + "timestamp": 1678827878.760063, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950701" }, { - "test_type": "development", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.611593, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704035", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.760065, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881839693" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.611595, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703995" + "timestamp": 1678827878.760067, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700989" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.611597, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703922" + "timestamp": 1678827878.76007, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701047" }, { - "test_type": "stable", - "passed": false, + "test_type": "development", + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.611599, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628138" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.760072, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701165", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.611601, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628139" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.611604, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483696" + "timestamp": 1678827878.760074, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625755" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.611606, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483765" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.611608, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022339" + "timestamp": 1678827878.760077, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481340" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.61161, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022382" + "timestamp": 1678827878.760079, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020376" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.611612, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.760081, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.611615, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", + "timestamp": 1678827878.760083, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.60056, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.749304, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" } ], "configuration": { "dependencies_files": [ - "requirements.txt" + "requirements.txt", + "dev-requirements.txt" ], "extra_dependencies": [ - "qiskit", - "coverage", - "pylint" + "qiskit" ], "tests_command": [ - "pytest" + "pytest . --ignore-glob=*_integration_test.py --ignore=examples/" ], "styles_check_command": [ - "pylint -rn torchquantum test" + "pylint --rcfile=.pylintrc examples qiskit-superstaq" ], "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" + "pytest qiskit_superstaq --cov --cov-report=term-missing --cov-config=.coveragerc --cov-fail-under=100 --ignore-glob=*_integration_test.py --ignore=examples/" ], "language": { "name": "python", @@ -1924,221 +1629,277 @@ } } }, - "15": { - "name": "pennylane-qiskit", - "url": "https://github.com/PennyLaneAI/pennylane-qiskit", - "description": "The PennyLane-Qiskit plugin integrates the Qiskit quantum computing framework with PennyLane's quantum machine learning capabilities", + "10": { + "created_at": 1628883441.119202, + "description": "Qiskit Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.", + "labels": [ + "hardware" + ], "licence": "Apache 2.0", + "name": "qiskit-metal", + "tier": "Community", + "updated_at": 1628883441.119205, + "url": "https://github.com/qiskit-community/qiskit-metal", + "tests_results": [], + "skip_tests": true, + "stars": 240 + }, + "11": { + "name": "sat-circuits-engine", + "url": "https://github.com/ohadlev77/sat-circuits-engine", + "description": "A Python-Qiskit-based package that provides capabilities of easily generating, executing and analyzing quantum circuits for satisfiability problems according to user-defined constraints. The circuits being generated by the program are based on Grover's algorithm and its amplitude-amplification generalization.", + "licence": "Apache License 2.0", + "contact_info": "ohadlev77@gmail.com", + "alternatives": "_No response_", + "affiliations": "_No response_", "labels": [ - "converter" + "algorithms", + "circuit" ], - "created_at": 1678827878.782751, - "updated_at": 1678827878.782752, + "created_at": 1678450437.835542, + "updated_at": 1678450437.835547, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": true, + "historical_test_results": [], + "stars": 7 + }, + "12": { + "name": "qiskit-toqm", + "url": "https://github.com/qiskit-toqm/qiskit-toqm", + "description": "Qiskit transpiler routing method using the Time-Optimal Qubit Mapping (TOQM) algorithm, described in https://doi.org/10.1145/3445814.3446706", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "labels": [ + "plugin", + "paper implementation", + "circuit" + ], + "created_at": 1678827878.737541, + "updated_at": 1678827878.737541, + "styles_results": [], + "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 127, + "stars": 4, "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.774079, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.735505, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.774085, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.737494, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.772074, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.737497, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" } ], "historical_test_results": [ { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.782722 + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.737502, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225279" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.782727, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463", - "package_commit_hash": "c60d3b8e735d54c1180fe788876f3c4dacbc3cba" + "timestamp": 1678827878.737504, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225231" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.19.1", - "terra_version": "0.19.1", - "timestamp": 1678827878.78273, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.737506, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953115" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.19.1", - "terra_version": "0.19.1", - "timestamp": 1678827878.782732, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.737509, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953228" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.737511, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881841568", + "package_commit_hash": "0344a1c94b8eb8206da18cc74d9bdc70ad203c9a" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.782734, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653656" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.737513, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704714" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.782736, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653687", - "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.737515, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704666" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.737518, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629059" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.782739, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653655" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.73752, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628983" }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.782743, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.737522, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484838" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.737524, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484746" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.782745, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.737526, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023237" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.772074, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" - } - ], - "configuration": { - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint", - "qiskit" - ], - "tests_command": [ - "pytest tests --tb=short" - ], - "styles_check_command": [ - "pylint -rn pennylane_qiskit tests" - ], - "coverages_check_command": [ - "python3 -m pytest tests --tb=short --cov=pennylane_qiskit --cov-report term-missing --cov-report=html:coverage_html_report" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.737531, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023197" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.737533, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.737535, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.735505, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } - } + ] }, - "16": { - "name": "qiskit-nature-pyscf-dft-embedding", - "url": "https://github.com/mrossinek/qiskit-nature-pyscf-dft-embedding", - "description": "This repository contains the latest prototype implementation of the Qiskit Nature + PySCF DFT Embedding. It is based on the following publication: > Max Rossmannek, Panagiotis Kl. Barkoutsos, Pauline J. Ollitrault, Ivano Tavernelli; > Quantum HF/DFT-embedding algorithms for electronic structure calculations: Scaling up to complex molecular systems. > J. Chem. Phys. 21 March 2021; 154 (11): 114105.", + "13": { + "name": "vqls-prototype", + "url": "https://github.com/QuantumApplicationLab/vqls-prototype", + "description": "The Variational Quantum Linear Solver (VQLS) uses an optimization approach to solve linear systems of equations. The vqls-prototype allows to easily setup and deploy a VQLS instance on different backends through the use of qiskit primitives and the runtime library", "licence": "Apache License 2.0", - "contact_info": "oss@zurich.ibm.com", - "alternatives": "_No response_", - "affiliations": "_No response_", + "contact_info": "nicolas.gm.renaud@gmail.com", + "alternatives": "The prototype builds on the qiskit-textbook chapter and tutorial. The prototype allows to use the primitives and use different cost function and test circuits to optimize the parameters.", + "affiliations": "Netherlands eScience Center @ Quantum Application Lab, Amsterdam NL", "labels": [ - "plugin", "algorithms", - "chemistry" + "optimization" ], - "created_at": 1685540348.208874, - "updated_at": 1685540348.208879, + "created_at": 1683906067.55753, + "updated_at": 1683906067.557535, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, "historical_test_results": [], - "stars": 3 + "stars": 1 }, - "17": { - "name": "QPong", - "url": "https://github.com/HuangJunye/QPong", - "description": "A quantum version of the classic game Pong built with Qiskit and PyGame", + "14": { + "name": "quantumcat", + "url": "https://github.com/artificial-brain/quantumcat", + "description": "quantumcat is a platform-independent, open-source, high-level quantum computing library, which allows the quantum community to focus on developing platform-independent quantum applications without much effort", "licence": "Apache 2.0", - "contact_info": "ukskosana@gmail.com", - "alternatives": "_No response_", "labels": [ - "game" + "algorithms", + "converter" ], - "created_at": 1678827877.979398, - "updated_at": 1678827877.979398, - "styles_results": [], - "coverages_results": [], + "created_at": 1678827878.289276, + "updated_at": 1678827878.289277, "tier": "Community", "skip_tests": false, - "stars": 110, + "stars": 20, "tests_results": [ { "test_type": "development", @@ -2146,8 +1907,8 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827877.970614, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", + "timestamp": 1678827878.280528, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { @@ -2156,28 +1917,48 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827877.968673, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" + "timestamp": 1678827878.278608, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.20.1", - "terra_version": "0.20.1", - "timestamp": 1678827877.970622, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" + "package_version": "0.17.4", + "terra_version": "0.17.4", + "timestamp": 1678827878.280536, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false } ], "historical_test_results": [ + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.289239 + }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.20.1", - "terra_version": "0.20.1", - "timestamp": 1678827877.979363, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938879" + "package_version": "0.17.4", + "terra_version": "0.17.4", + "timestamp": 1678827878.289244, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938614" }, { "test_type": "development", @@ -2185,8 +1966,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827877.979368, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920605", + "timestamp": 1678827878.289247, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920000", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -2195,8 +1976,8 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827877.97937, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639040" + "timestamp": 1678827878.28925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638565" }, { "test_type": "stable", @@ -2204,8 +1985,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827877.979373, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224830" + "timestamp": 1678827878.289252, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224447" }, { "test_type": "stable", @@ -2213,8 +1994,8 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827877.979375, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952730" + "timestamp": 1678827878.289254, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951857" }, { "test_type": "development", @@ -2222,8 +2003,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827877.979377, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704251", + "timestamp": 1678827878.289257, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703088", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { @@ -2232,8 +2013,8 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827877.97938, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704190" + "timestamp": 1678827878.289259, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703035" }, { "test_type": "stable", @@ -2241,8 +2022,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827877.979382, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628345" + "timestamp": 1678827878.289261, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627419" }, { "test_type": "stable", @@ -2250,8 +2031,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827877.979384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484060" + "timestamp": 1678827878.289264, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482715" }, { "test_type": "stable", @@ -2259,8 +2040,17 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827877.979387, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022588" + "timestamp": 1678827878.289266, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021726" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.17.4", + "terra_version": "0.17.4", + "timestamp": 1678827878.289268, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" }, { "test_type": "development", @@ -2268,159 +2058,102 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827877.979389, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", + "timestamp": 1678827878.28927, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.1", - "terra_version": "0.20.1", - "timestamp": 1678827877.979391, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" - }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827877.968673, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" + "timestamp": 1678827878.278608, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" } ], "configuration": { "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" + "requirements.txt" ], "extra_dependencies": [ - "pytest" + "coverage", + "pylint" ], "tests_command": [ "pytest" ], "styles_check_command": [ - "pylint -rn qpong tests" + "pylint -rn quantumcat tests" ], "coverages_check_command": [ - "coverage3 run -m pytest", + "coverage3 -m pytest", "coverage3 report --fail-under=80" ], "language": { "name": "python", "versions": [ - "3.9" + "3.6" ] } } }, - "18": { - "name": "vqls-prototype", - "url": "https://github.com/QuantumApplicationLab/vqls-prototype", - "description": "The Variational Quantum Linear Solver (VQLS) uses an optimization approach to solve linear systems of equations. The vqls-prototype allows to easily setup and deploy a VQLS instance on different backends through the use of qiskit primitives and the runtime library", - "licence": "Apache License 2.0", - "contact_info": "nicolas.gm.renaud@gmail.com", - "alternatives": "The prototype builds on the qiskit-textbook chapter and tutorial. The prototype allows to use the primitives and use different cost function and test circuits to optimize the parameters.", - "affiliations": "Netherlands eScience Center @ Quantum Application Lab, Amsterdam NL", + "15": { + "name": "QPong", + "url": "https://github.com/HuangJunye/QPong", + "description": "A quantum version of the classic game Pong built with Qiskit and PyGame", + "licence": "Apache 2.0", + "contact_info": "ukskosana@gmail.com", + "alternatives": "_No response_", "labels": [ - "algorithms", - "optimization" + "game" ], - "created_at": 1683906067.55753, - "updated_at": 1683906067.557535, - "tests_results": [], + "created_at": 1678827877.979398, + "updated_at": 1678827877.979398, "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, - "historical_test_results": [], - "stars": 1 - }, - "19": { - "name": "qiskit-superstaq", - "url": "https://github.com/SupertechLabs/qiskit-superstaq", - "description": "This package is used to access SuperstaQ via a Web API through Qiskit. Qiskit programmers can take advantage of the applications, pulse level optimizations, and write-once-target-all features of SuperstaQ with this package.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "plugin" - ], - "created_at": 1678827878.760089, - "updated_at": 1678827878.76009, - "tier": "Community", - "skip_tests": false, + "stars": 110, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.751285, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", + "timestamp": 1678827877.970614, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.760098, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" - }, { "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.749304, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.751296, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827877.968673, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" + }, { - "coverage_type": "", - "passed": true + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.1", + "terra_version": "0.20.1", + "timestamp": 1678827877.970622, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" } ], "historical_test_results": [ - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.760048 - }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.760053, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938222" + "package_version": "0.20.1", + "terra_version": "0.20.1", + "timestamp": 1678827877.979363, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938879" }, { "test_type": "development", @@ -2428,8 +2161,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.760056, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919098", + "timestamp": 1678827877.979368, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920605", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -2438,8 +2171,8 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.760058, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637871" + "timestamp": 1678827877.97937, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639040" }, { "test_type": "stable", @@ -2447,8 +2180,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.76006, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223849" + "timestamp": 1678827877.979373, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224830" }, { "test_type": "stable", @@ -2456,168 +2189,155 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.760063, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950701" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.760065, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881839693" + "timestamp": 1678827877.979375, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952730" }, { - "test_type": "standard", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.760067, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700989" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827877.979377, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704251", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.76007, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701047" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.760072, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701165", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "timestamp": 1678827877.97938, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704190" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.760074, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625755" + "timestamp": 1678827877.979382, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628345" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.760077, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481340" + "timestamp": 1678827877.979384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484060" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.760079, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020376" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.760081, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" + "timestamp": 1678827877.979387, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022588" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.760083, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", + "timestamp": 1678827877.979389, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.1", + "terra_version": "0.20.1", + "timestamp": 1678827877.979391, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" + }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.749304, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" + "timestamp": 1678827877.968673, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" } ], "configuration": { "dependencies_files": [ "requirements.txt", - "dev-requirements.txt" + "requirements-dev.txt" ], "extra_dependencies": [ - "qiskit" + "pytest" ], "tests_command": [ - "pytest . --ignore-glob=*_integration_test.py --ignore=examples/" + "pytest" ], "styles_check_command": [ - "pylint --rcfile=.pylintrc examples qiskit-superstaq" + "pylint -rn qpong tests" ], "coverages_check_command": [ - "pytest qiskit_superstaq --cov --cov-report=term-missing --cov-config=.coveragerc --cov-fail-under=100 --ignore-glob=*_integration_test.py --ignore=examples/" + "coverage3 run -m pytest", + "coverage3 report --fail-under=80" ], "language": { "name": "python", "versions": [ - "3.6" + "3.9" ] } } }, - "20": { - "name": "mitiq", - "url": "https://github.com/unitaryfund/mitiq", - "description": "Mitiq is a Python toolkit for implementing error mitigation techniques on quantum computers", + "16": { + "name": "qiskit-cold-atom", + "url": "https://github.com/qiskit-community/qiskit-cold-atom", + "description": "This project builds on this functionality to describe programmable quantum simulators of trapped cold atoms in a gate- and circuit-based framework.", "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", "labels": [ - "error mitigation" + "provider" ], - "created_at": 1678827878.932437, - "updated_at": 1678827878.932437, + "created_at": 1678827878.507531, + "updated_at": 1678827878.507532, + "styles_results": [], + "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 274, + "stars": 22, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.923804, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", + "timestamp": 1678827878.496921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.92381, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881840342" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.498896, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.921839, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" + "timestamp": 1678827878.498899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" }, { "test_type": "standard", @@ -2625,66 +2345,28 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.923815, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false + "timestamp": 1678827878.498902, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" } ], "historical_test_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.932371 - }, { "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.932377, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.932379, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" - }, - { - "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.932381, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" + "timestamp": 1678827878.507478, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.932384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" + "timestamp": 1678827878.507483, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" }, { "test_type": "development", @@ -2692,27 +2374,27 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.932386, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919750", + "timestamp": 1678827878.507486, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920905", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.932389, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638345" + "timestamp": 1678827878.507488, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639328" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.932391, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638304" + "timestamp": 1678827878.50749, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639358" }, { "test_type": "stable", @@ -2720,8 +2402,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.932393, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224255" + "timestamp": 1678827878.507492, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225772" }, { "test_type": "standard", @@ -2729,73 +2411,44 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.932395, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224230" + "timestamp": 1678827878.507494, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225754" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.932398, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951515" + "timestamp": 1678827878.507497, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953898" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.9324, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951564" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.932402, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076129" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.932404, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076183" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.932407, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076243", - "package_commit_hash": "07e0a2fc79bada7c1fbf0594f4ad33934f70b7e2" + "timestamp": 1678827878.507499, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953919" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.932409, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702596", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "timestamp": 1678827878.507501, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705694" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.932411, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702443" + "timestamp": 1678827878.507503, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705604" }, { "test_type": "standard", @@ -2803,53 +2456,53 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.932413, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702348" + "timestamp": 1678827878.507505, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705583" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.932415, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626991" + "timestamp": 1678827878.507508, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630594" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.932418, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626957" + "timestamp": 1678827878.50751, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630688" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.93242, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482306" + "timestamp": 1678827878.507512, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485912" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.932422, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482198" + "timestamp": 1678827878.507514, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485977" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.932424, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021293" + "timestamp": 1678827878.507519, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024143" }, { "test_type": "standard", @@ -2857,8 +2510,17 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.932426, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021201" + "timestamp": 1678827878.507521, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024081" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.507523, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" }, { "test_type": "standard", @@ -2866,205 +2528,224 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.932429, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" + "timestamp": 1678827878.507525, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.932431, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", + "timestamp": 1678827878.496921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.921839, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" } ], "configuration": { "dependencies_files": [ - "requirements.txt", - "dev_requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint", - "qiskit" + "requirements-dev.txt" ], + "extra_dependencies": [], "tests_command": [ - "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml --ignore=mitiq/interface/mitiq_pyquil" + "stestr run" ], "styles_check_command": [ - "pylint -rn mitiq" - ], - "coverages_check_command": [ - "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml" + "pylint -rn -j 0 --rcfile=./.pylintrc qiskit_cold_atom/ test/" ], + "coverages_check_command": [], "language": { "name": "python", "versions": [ - "3.6" + "3.7" ] } } }, - "21": { - "name": "diskit", - "url": "https://github.com/Interlin-q/diskit", - "description": "Distributed quantum computing is a concept that proposes to connect multiple quantum computers in a network to leverage a collection of more, but physically separated, qubits. In order to perform distributed quantum computing, it is necessary to add the addition of classical communication and entanglement distribution so that the control information from one qubit can be applied to another that is located on another quantum computer. For more details on distributed quantum computing, see this blog post: [Distributed Quantum Computing: A path to large scale quantum computing](https://medium.com/@stephen.diadamo/distributed-quantum-computing-1c5d38a34c50) In this project, we aim to validate distributed quantum algorithms using Qiskit. Because Qiskit does not yet come with networking features, we embed a \"virtual network topology\" into large circuits to mimic distributed quantum computing. The idea is to take a monolithic quantum circuit developed in the Qiskit language and distribute the circuit according to an artificially segmented version of a quantum processor. The inputs to the library are a quantum algorithm written monolithically (i.e., in a single circuit) and a topology parameter that represents the artificial segmentation of the single quantum processor. The algorithm takes these two inputs and remaps the Qiskit circuit to the specified segmentation, adding all necessary steps to perform an equivalent distributed quantum circuit. Our algorithm for achieving this is based on the work: [Distributed Quantum Computing and Network Control for Accelerated VQE](https://ieeexplore.ieee.org/document/9351762). The algorithm output is another Qiskit circuit with the equivalent measurement statistics but with all of the additional logic needed to perform a distributed version.", - "licence": "Apache License 2.0", - "contact_info": "stephen.diadamo@gmail.com, anuranan.fifa14@gmail.com", - "alternatives": "Interlin-q: https://github.com/Interlin-q/Interlin-q A similar library but uses QuNetSim to simulate the network communication for distributed quantum computing.", + "17": { + "name": "bosonic-qiskit", + "url": "https://github.com/C2QA/bosonic-qiskit", + "description": "NQI C2QA project to simulate hybrid boson-qubit systems within Qiskit.", + "licence": "BSD 2-Clause Simplified or FreeBSD license", "labels": [ - "plugin", - "circuit", - "converter" + "simulation", + "physics" ], - "created_at": 1678827878.415704, - "updated_at": 1678827878.415704, + "created_at": 1678827878.841977, + "updated_at": 1678827878.841978, "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, - "historical_test_results": [], - "stars": 4, + "stars": 34, "tests_results": [ { - "test_type": "development", - "passed": false, + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.839921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.841942, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.841944, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.841947, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" + } + ], + "historical_test_results": [ + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.841952, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225482" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.841954, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953307" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.841957, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704942", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.841959, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704855" + }, + { + "test_type": "stable", + "passed": true, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.413669, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048174", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.841961, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629269" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.415684, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048144" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.841963, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485085" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.841967, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023417" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.415689, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048071" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.84197, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.841972, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.839921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } ] }, - "22": { - "name": "quantum-tetris", - "url": "https://github.com/olivierbrcknr/quantum-tetris", - "description": "What would happen if you combine Tetris with a Quantum computer? The winning entry of the Quantum Design Jam from IBM and Parsons in October 2021 explores just that!", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "game" - ], - "created_at": 1679712086.990215, - "updated_at": 1679712086.99022, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": true, - "historical_test_results": [], - "stars": 9 - }, - "23": { - "name": "qBraid", - "url": "https://github.com/qBraid/qBraid", - "description": "The qBraid-SDK is a Python toolkit for cross-framework abstraction, transpilation, and execution of quantum programs.", - "licence": "GNU General Public License (GPL)", - "contact_info": "ryanhill@qbraid.com", - "alternatives": "There are some alternatives to individual modules within the qBraid-SDK e.g. to execute a Qiskit circuit on an AWS device, you could use the qiskit-braket-provider. However, there aren't any other existing projects that support the same matrix of quantum program types and backends through a single, unified interface.", - "affiliations": "qBraid Co.", - "website": "https://qbraid.com", - "labels": [ - "circuit", - "openqasm", - "converter" - ], - "created_at": 1690263743.561744, - "updated_at": 1690263743.56175, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "historical_test_results": [], - "stars": 36 - }, - "24": { - "created_at": 1636403009.368607, - "description": "Qiskit Finance is an open-source framework that contains uncertainty components for stock/securities problems, Ising translators for portfolio optimizations and data providers to source real or random data to finance experiments.", - "labels": [ - "algorithms", - "finance" - ], - "licence": "Apache 2.0", - "name": "qiskit-finance", - "tier": "Community", - "updated_at": 1636403009.368609, - "url": "https://github.com/qiskit-community/qiskit-finance", - "website": "https://qiskit.org/ecosystem/finance/", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "stars": 170 - }, - "25": { - "name": "c3", - "url": "https://github.com/q-optimize/c3", - "description": "The C3 package is intended to close the loop between open-loop control optimization, control pulse calibration, and model-matching based on calibration data.", + "18": { + "name": "kaleidoscope", + "url": "https://github.com/QuSTaR/kaleidoscope", + "description": "Kaleidoscope", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ "plugin" ], - "created_at": 1678827878.240528, - "updated_at": 1678827878.240528, + "created_at": 1678827878.7097, + "updated_at": 1678827878.709701, "tier": "Community", "skip_tests": false, - "stars": 56, + "stars": 19, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.229887, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", + "timestamp": 1678827878.698999, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.231853, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469022488" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.700973, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3683924960" }, { "test_type": "stable", @@ -3072,29 +2753,29 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.231856, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" + "timestamp": 1678827878.700976, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.231858, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" + "timestamp": 1678827878.700979, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" } ], "styles_results": [ { "style_type": "pylint", - "passed": true + "passed": false } ], "coverages_results": [ { "coverage_type": "", - "passed": true + "passed": false } ], "historical_test_results": [ @@ -3104,23 +2785,23 @@ "package": "qiskit-terra", "package_version": "0.20.2", "terra_version": "0.20.2", - "timestamp": 1678827878.240462 + "timestamp": 1678827878.709635 }, { - "test_type": "development", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.240467 + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.709641 }, { - "test_type": "stable", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.240469 + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.709643 }, { "test_type": "standard", @@ -3128,8 +2809,8 @@ "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.240472, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" + "timestamp": 1678827878.709645, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" }, { "test_type": "stable", @@ -3137,127 +2818,127 @@ "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.240474, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" + "timestamp": 1678827878.709647, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.240477, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" + "timestamp": 1678827878.70965, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.240479, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" + "timestamp": 1678827878.709652, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.240481, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180918979", + "timestamp": 1678827878.709654, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919383", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.240483, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637724" + "timestamp": 1678827878.709656, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637966" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.240486, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637748" + "timestamp": 1678827878.709659, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638009" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.240488, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223753" + "timestamp": 1678827878.709661, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223971" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.24049, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223761" + "timestamp": 1678827878.709663, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223985" }, { "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.240492, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950511" - }, - { - "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.240495, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950486" + "timestamp": 1678827878.709665, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951084" }, { "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.240497, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700830" + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.709668, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951050" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.240499, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700868" + "timestamp": 1678827878.70967, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701441" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.240501, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700942", + "timestamp": 1678827878.709672, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701574", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.709674, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701523" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.240503, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625453" + "timestamp": 1678827878.709677, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626207" }, { "test_type": "stable", @@ -3265,17 +2946,17 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.240506, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625536" + "timestamp": 1678827878.709679, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626228" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.240508, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481181" + "timestamp": 1678827878.709681, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481624" }, { "test_type": "stable", @@ -3283,26 +2964,26 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.24051, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481227" + "timestamp": 1678827878.709683, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481674" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.240512, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020187" + "timestamp": 1678827878.709688, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020677" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.240516, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020171" + "timestamp": 1678827878.70969, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020708" }, { "test_type": "stable", @@ -3310,138 +2991,247 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.240519, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" + "timestamp": 1678827878.709692, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.240521, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" + "timestamp": 1678827878.709695, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.229887, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", + "timestamp": 1678827878.698999, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } ], "configuration": { "dependencies_files": [ - "requirements.txt" + "requirements.txt", + "requirements-dev.txt" ], "extra_dependencies": [ - "qiskit", "coverage", - "pylint", - "black" + "pylint" ], "tests_command": [ - "pytest -v -x -m \"not slow\" test/", - "pytest -v -x -m \"slow\" test/" + "pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit" ], "styles_check_command": [ - "black --check c3/" + "pylint -rn kaleidoscope" ], "coverages_check_command": [ - "pytest -x -v --cov=c3 --cov-report=xml test/" + "coverage3 -m pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit", + "coverage3 report --fail-under=80" ], "language": { "name": "python", "versions": [ - "3.7", - "3.8", - "3.9" + "3.6" ] } } }, - "26": { - "name": "QiskitOpt.jl", - "url": "https://github.com/psrenergy/QiskitOpt.jl", - "description": "QiskitOpt.jl is a Julia package that exports a JuMP wrapper for qiskit-optimization.", - "licence": "MIT license", - "contact_info": "pedroxavier@psr-inc.com, pedroripper@psr-inc.com, tiago@psr-inc.com, joaquim@psr-inc.com, dbernalneira@usra.edu", - "alternatives": "_No response_", - "affiliations": "@psrenergy and USRA", + "19": { + "created_at": 1636403009.368607, + "description": "Qiskit Finance is an open-source framework that contains uncertainty components for stock/securities problems, Ising translators for portfolio optimizations and data providers to source real or random data to finance experiments.", "labels": [ - "algorithms" + "algorithms", + "finance" ], - "created_at": 1673642669.650459, - "updated_at": 1673642669.650464, + "licence": "Apache 2.0", + "name": "qiskit-finance", + "tier": "Community", + "updated_at": 1636403009.368609, + "url": "https://github.com/qiskit-community/qiskit-finance", + "website": "https://qiskit.org/ecosystem/finance/", "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Community", "skip_tests": true, - "historical_test_results": [], - "stars": 8 + "stars": 170 }, - "27": { - "name": "qiskit-toqm", - "url": "https://github.com/qiskit-toqm/qiskit-toqm", - "description": "Qiskit transpiler routing method using the Time-Optimal Qubit Mapping (TOQM) algorithm, described in https://doi.org/10.1145/3445814.3446706", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", + "20": { + "created_at": 1636403009.16708, + "description": "Qiskit Nature allows researchers and developers in different areas of natural sciences (including physics, chemistry, material science and biology) to model and solve domain-specific problems using quantum simulations", "labels": [ - "plugin", - "paper implementation", - "circuit" + "algorithms", + "physics", + "chemistry" ], - "created_at": 1678827878.737541, - "updated_at": 1678827878.737541, + "licence": "Apache 2.0", + "name": "qiskit-nature", + "tier": "Community", + "updated_at": 1636403009.167082, + "url": "https://github.com/qiskit-community/qiskit-nature", + "website": "https://qiskit.org/ecosystem/nature", + "tests_results": [], "styles_results": [], "coverages_results": [], + "skip_tests": true, + "stars": 236 + }, + "21": { + "name": "qiskit-rigetti", + "url": "https://github.com/rigetti/qiskit-rigetti", + "description": "Rigetti Provider for Qiskit", + "licence": "Apache 2.0", + "labels": [ + "provider" + ], + "created_at": 1678827878.136911, + "updated_at": 1678827878.136912, "tier": "Community", "skip_tests": false, - "stars": 4, + "stars": 7, "tests_results": [ { - "test_type": "development", + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.128199, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.126264, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.128207, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false + } + ], + "historical_test_results": [ + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.136846 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.136852 + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.136854 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.136857, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.136859, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.136861, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" + }, + { + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.735505, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.136863, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.737494, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.136866, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920336", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.737497, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" - } - ], - "historical_test_results": [ + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.136868, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638837" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.13687, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638860" + }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.737502, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225279" + "timestamp": 1678827878.136872, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224732" }, { "test_type": "standard", @@ -3449,8 +3239,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.737504, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225231" + "timestamp": 1678827878.136874, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224678" }, { "test_type": "standard", @@ -3458,8 +3248,8 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.737506, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953115" + "timestamp": 1678827878.136877, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952331" }, { "test_type": "stable", @@ -3467,27 +3257,27 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.737509, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953228" + "timestamp": 1678827878.136879, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952362" }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.737511, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881841568", - "package_commit_hash": "0344a1c94b8eb8206da18cc74d9bdc70ad203c9a" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.136881, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703796" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.737513, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704714" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.136883, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703897", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "standard", @@ -3495,8 +3285,8 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.737515, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704666" + "timestamp": 1678827878.136886, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703767" }, { "test_type": "stable", @@ -3504,8 +3294,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.737518, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629059" + "timestamp": 1678827878.136888, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628005" }, { "test_type": "standard", @@ -3513,8 +3303,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.73752, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628983" + "timestamp": 1678827878.13689, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627910" }, { "test_type": "stable", @@ -3522,8 +3312,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.737522, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484838" + "timestamp": 1678827878.136893, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483522" }, { "test_type": "standard", @@ -3531,58 +3321,177 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.737524, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484746" + "timestamp": 1678827878.136895, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483440" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.737526, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023237" + "timestamp": 1678827878.136897, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022161" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.737531, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023197" + "timestamp": 1678827878.136899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022210" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.737533, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" + "timestamp": 1678827878.136902, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" }, { - "test_type": "standard", + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.136904, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.737535, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" + "timestamp": 1678827878.126264, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" + } + ], + "configuration": { + "dependencies_files": [], + "extra_dependencies": [ + "qiskit", + "coverage", + "pylint", + "numpy==1.*,>=1.20.1", + "pyquil==3.*,>=3.0.0", + "black==20.*,>=20.8.0.b1", + "flake8==3.*,>=3.8.1", + "mypy==0.*,>=0.800.0", + "pip-licenses==3.*,>=3.5.1", + "pytest==6.*,>=6.2.2", + "pytest-cov==2.*,>=2.11.1", + "pytest-httpx==0.*,>=0.9.0", + "pytest-mock==3.*,>=3.6.1" + ], + "tests_command": [ + "pytest" + ], + "styles_check_command": [ + "pylint -rn qiskit_rigetti tests" + ], + "coverages_check_command": [ + "coverage3 -m pytest", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] + } + } + }, + "22": { + "name": "pytket-qiskit", + "url": "https://github.com/CQCL/pytket-extensions/tree/develop/modules/pytket-qiskit", + "description": "an extension to Pytket (a python module for interfacing with CQC tket) that allows Pytket circuits to be run on IBM backends and simulators, as well as conversion to and from Qiskit representations.", + "licence": "Apache 2.0", + "labels": [ + "plugin" + ], + "created_at": 1661869851.523229, + "updated_at": 1661869851.523229, + "tier": "Community", + "skip_tests": false, + "tests_results": [ + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.523199, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", + "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.523204, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.522323, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false + } + ], + "historical_test_results": [ + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.52322, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" }, { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.735505, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.523222, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", + "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.522323, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" } ] }, - "28": { + "23": { "name": "qiskit-bip-mapper", "url": "https://github.com/qiskit-community/qiskit-bip-mapper", "description": "The repository contains a standalone routing stage plugin to use the BIPMapping [routing](https://qiskit.org/documentation/apidoc/transpiler.html#routing-stage) pass. The BIP mapping pass solves the routing and [layout](https://qiskit.org/documentation/apidoc/transpiler.html#layout-stage) problems as a binary integer programming (BIP) problem. The algorithm used in this pass is described in: G. Nannicini et al. \"Optimal qubit assignment and routing via integer programming.\" [arXiv:2106.06446](https://arxiv.org/abs/2106.06446)", @@ -3604,488 +3513,535 @@ "historical_test_results": [], "stars": 4 }, - "29": { - "name": "bosonic-qiskit", - "url": "https://github.com/C2QA/bosonic-qiskit", - "description": "NQI C2QA project to simulate hybrid boson-qubit systems within Qiskit.", - "licence": "BSD 2-Clause Simplified or FreeBSD license", + "24": { + "name": "qBraid", + "url": "https://github.com/qBraid/qBraid", + "description": "The qBraid-SDK is a Python toolkit for cross-framework abstraction, transpilation, and execution of quantum programs.", + "licence": "GNU General Public License (GPL)", + "contact_info": "ryanhill@qbraid.com", + "alternatives": "There are some alternatives to individual modules within the qBraid-SDK e.g. to execute a Qiskit circuit on an AWS device, you could use the qiskit-braket-provider. However, there aren't any other existing projects that support the same matrix of quantum program types and backends through a single, unified interface.", + "affiliations": "qBraid Co.", + "website": "https://qbraid.com", "labels": [ - "simulation", - "physics" + "circuit", + "openqasm", + "converter" ], - "created_at": 1678827878.841977, - "updated_at": 1678827878.841978, + "created_at": 1690263743.561744, + "updated_at": 1690263743.56175, + "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 34, + "historical_test_results": [], + "stars": 36 + }, + "25": { + "name": "mitiq", + "url": "https://github.com/unitaryfund/mitiq", + "description": "Mitiq is a Python toolkit for implementing error mitigation techniques on quantum computers", + "licence": "Apache 2.0", + "labels": [ + "error mitigation" + ], + "created_at": 1678827878.932437, + "updated_at": 1678827878.932437, + "tier": "Community", + "skip_tests": false, + "stars": 274, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.839921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", + "timestamp": 1678827878.923804, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.841942, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.92381, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881840342" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.841944, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" + "timestamp": 1678827878.921839, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.841947, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.923815, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false } ], "historical_test_results": [ { - "test_type": "stable", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.841952, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225482" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.932371 }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.841954, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953307" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.932377, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" }, { - "test_type": "development", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.841957, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704942", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.932379, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.841959, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704855" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.932381, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.841961, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629269" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.932384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" }, { - "test_type": "stable", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.841963, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485085" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.932386, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919750", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.841967, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023417" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.932389, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638345" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.84197, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.932391, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638304" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.841972, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.932393, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224255" }, { - "test_type": "development", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.839921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - } - ] - }, - "30": { - "created_at": 1628883441.119202, - "description": "Qiskit Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.", - "labels": [ - "hardware" - ], - "licence": "Apache 2.0", - "name": "qiskit-metal", - "tier": "Community", - "updated_at": 1628883441.119205, - "url": "https://github.com/qiskit-community/qiskit-metal", - "tests_results": [], - "skip_tests": true, - "stars": 240 - }, - "31": { - "name": "qiskit-rigetti", - "url": "https://github.com/rigetti/qiskit-rigetti", - "description": "Rigetti Provider for Qiskit", - "licence": "Apache 2.0", - "labels": [ - "provider" - ], - "created_at": 1678827878.136911, - "updated_at": 1678827878.136912, - "tier": "Community", - "skip_tests": false, - "stars": 7, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.128199, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.126264, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.932395, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224230" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.128207, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.932398, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951515" + }, { - "coverage_type": "", - "passed": false - } - ], - "historical_test_results": [ + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.9324, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951564" + }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.136846 + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.932402, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076129" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.136852 + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.932404, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076183" }, { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.136854 + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.932407, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076243", + "package_commit_hash": "07e0a2fc79bada7c1fbf0594f4ad33934f70b7e2" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.136857, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.932409, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702596", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.136859, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.932411, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702443" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.136861, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.932413, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702348" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.136863, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.932415, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626991" }, { - "test_type": "development", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.136866, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920336", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.932418, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626957" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.136868, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638837" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.93242, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482306" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.13687, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638860" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.932422, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482198" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.136872, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224732" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.932424, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021293" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.136874, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224678" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.932426, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021201" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.136877, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952331" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.932429, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.136879, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952362" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.932431, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.136881, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703796" - }, + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.921839, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" + } + ], + "configuration": { + "dependencies_files": [ + "requirements.txt", + "dev_requirements.txt" + ], + "extra_dependencies": [ + "coverage", + "pylint", + "qiskit" + ], + "tests_command": [ + "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml --ignore=mitiq/interface/mitiq_pyquil" + ], + "styles_check_command": [ + "pylint -rn mitiq" + ], + "coverages_check_command": [ + "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] + } + } + }, + "26": { + "name": "pennylane-qiskit", + "url": "https://github.com/PennyLaneAI/pennylane-qiskit", + "description": "The PennyLane-Qiskit plugin integrates the Qiskit quantum computing framework with PennyLane's quantum machine learning capabilities", + "licence": "Apache 2.0", + "labels": [ + "converter" + ], + "created_at": 1678827878.782751, + "updated_at": 1678827878.782752, + "tier": "Community", + "skip_tests": false, + "stars": 127, + "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.136883, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703897", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.774079, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.136886, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703767" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.774085, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.136888, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628005" - }, + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.772074, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" + } + ], + "styles_results": [ { - "test_type": "standard", + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false + } + ], + "historical_test_results": [ + { + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.13689, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627910" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.782722 }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.136893, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483522" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.782727, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463", + "package_commit_hash": "c60d3b8e735d54c1180fe788876f3c4dacbc3cba" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.136895, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483440" + "package_version": "0.19.1", + "terra_version": "0.19.1", + "timestamp": 1678827878.78273, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.136897, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022161" + "package_version": "0.19.1", + "terra_version": "0.19.1", + "timestamp": 1678827878.782732, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.136899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022210" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.782734, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653656" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.782736, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653687", + "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.136902, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.782739, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653655" }, { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.136904, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.782743, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.126264, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.782745, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.772074, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" } ], "configuration": { - "dependencies_files": [], + "dependencies_files": [ + "requirements.txt" + ], "extra_dependencies": [ - "qiskit", "coverage", "pylint", - "numpy==1.*,>=1.20.1", - "pyquil==3.*,>=3.0.0", - "black==20.*,>=20.8.0.b1", - "flake8==3.*,>=3.8.1", - "mypy==0.*,>=0.800.0", - "pip-licenses==3.*,>=3.5.1", - "pytest==6.*,>=6.2.2", - "pytest-cov==2.*,>=2.11.1", - "pytest-httpx==0.*,>=0.9.0", - "pytest-mock==3.*,>=3.6.1" + "qiskit" ], "tests_command": [ - "pytest" + "pytest tests --tb=short" ], "styles_check_command": [ - "pylint -rn qiskit_rigetti tests" + "pylint -rn pennylane_qiskit tests" ], "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" + "python3 -m pytest tests --tb=short --cov=pennylane_qiskit --cov-report term-missing --cov-report=html:coverage_html_report" ], "language": { "name": "python", @@ -4095,71 +4051,100 @@ } } }, - "32": { - "name": "QiskitBot", - "url": "https://github.com/infiniteregrets/QiskitBot", - "description": "A discord bot that allows you to execute Quantum Circuits, look up the Qiskit's Documentation, and search questions on the Quantum Computing StackExchange", - "licence": "Apache 2.0", - "labels": [], - "created_at": 1641938992.363096, - "updated_at": 1641938992.363099, + "27": { + "name": "purplecaffeine", + "url": "https://github.com/IceKhan13/purplecaffeine", + "description": "Project is aimed to create simple general interface to track quantum experiments, store and search them in an easy way.", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "affiliations": "QAMP", + "website": "https://icekhan13.github.io/purplecaffeine/index.html", + "labels": [ + "plugin", + "notebook" + ], + "created_at": 1688661859.080258, + "updated_at": 1688661859.080264, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "historical_test_results": [], + "stars": 6 + }, + "28": { + "name": "QiskitOpt.jl", + "url": "https://github.com/psrenergy/QiskitOpt.jl", + "description": "QiskitOpt.jl is a Julia package that exports a JuMP wrapper for qiskit-optimization.", + "licence": "MIT license", + "contact_info": "pedroxavier@psr-inc.com, pedroripper@psr-inc.com, tiago@psr-inc.com, joaquim@psr-inc.com, dbernalneira@usra.edu", + "alternatives": "_No response_", + "affiliations": "@psrenergy and USRA", + "labels": [ + "algorithms" + ], + "created_at": 1673642669.650459, + "updated_at": 1673642669.650464, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": true, - "stars": 23 + "historical_test_results": [], + "stars": 8 }, - "33": { - "name": "quantuminspire", - "url": "https://github.com/QuTech-Delft/quantuminspire", - "description": "platform allows to execute quantum algorithms using the cQASM language.", + "29": { + "name": "python-open-controls", + "url": "https://github.com/qctrl/python-open-controls", + "description": "Q-CTRL Open Controls is an open-source Python package that makes it easy to create and deploy established error-robust quantum control protocols from the open literature", "licence": "Apache 2.0", "labels": [ - "algorithms" + "hardware" ], - "created_at": 1678827878.401835, - "updated_at": 1678827878.401836, + "created_at": 1678827878.68594, + "updated_at": 1678827878.68594, "tier": "Community", "skip_tests": false, - "stars": 57, + "stars": 89, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.393127, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", + "timestamp": 1678827878.677212, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.393133, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.685948, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.393136, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" + "timestamp": 1678827878.675149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.391164, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" + "timestamp": 1678827878.677223, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" } ], "styles_results": [ @@ -4171,33 +4156,18 @@ "coverages_results": [ { "coverage_type": "", - "passed": true + "passed": false } ], "historical_test_results": [ { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.401772 - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.401778 - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.40178 + "timestamp": 1678827878.685884, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" }, { "test_type": "standard", @@ -4205,17 +4175,8 @@ "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.401782, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.401785, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" + "timestamp": 1678827878.685889, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" }, { "test_type": "standard", @@ -4223,17 +4184,17 @@ "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.401787, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" + "timestamp": 1678827878.685892, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.401789, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" + "timestamp": 1678827878.685894, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" }, { "test_type": "development", @@ -4241,27 +4202,27 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.401792, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919652", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "timestamp": 1678827878.685896, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3134449307", + "package_commit_hash": "672e95d089ba0e834915796f2b1d59527f3b4ef2" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.401794, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638229" + "timestamp": 1678827878.685899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638751" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.401796, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638217" + "timestamp": 1678827878.685901, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638746" }, { "test_type": "stable", @@ -4269,8 +4230,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.401798, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224170" + "timestamp": 1678827878.685903, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224632" }, { "test_type": "standard", @@ -4278,8 +4239,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.4018, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224153" + "timestamp": 1678827878.685905, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224622" }, { "test_type": "stable", @@ -4287,8 +4248,8 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.401803, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951415" + "timestamp": 1678827878.685907, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952236" }, { "test_type": "standard", @@ -4296,36 +4257,36 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.401805, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951365" + "timestamp": 1678827878.68591, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952183" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.401807, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702185", + "timestamp": 1678827878.685912, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703617", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.401809, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702004" + "timestamp": 1678827878.685914, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703451" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.401812, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701988" + "timestamp": 1678827878.685916, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703538" }, { "test_type": "standard", @@ -4333,8 +4294,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.401814, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626686" + "timestamp": 1678827878.685918, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627765" }, { "test_type": "stable", @@ -4342,91 +4303,165 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.401816, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" + "timestamp": 1678827878.68592, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627780" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.401818, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482051" + "timestamp": 1678827878.685923, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483343" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.40182, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481946" + "timestamp": 1678827878.685925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483261" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.401823, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021022" + "timestamp": 1678827878.685927, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021941" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.401825, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021114" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.401827, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" + "timestamp": 1678827878.685929, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022030" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.401829, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", + "timestamp": 1678827878.685932, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.391164, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" + "timestamp": 1678827878.685934, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.675149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" + } + ], + "configuration": { + "dependencies_files": [], + "extra_dependencies": [ + "qiskit", + "coverage", + "numpy==1.*,>=1.20.0", + "toml==0.*,>=0.10.0", + "black==20.*,>=20.8.0.b1", + "isort==5.*,>=5.7.0", + "mypy==0.*,>=0.800.0", + "nbval==0.*,>=0.9.5", + "pre-commit==2.*,>=2.9.3", + "pylint==2.*,>=2.6.0", + "pylint-runner==0.*,>=0.5.4", + "pytest==5.*,>=5.0.0", + "qctrl-visualizer==2.*,>=2.12.2" + ], + "tests_command": [ + "pytest" + ], + "styles_check_command": [ + "pylint -rn qctrlopencontrols tests" + ], + "coverages_check_command": [ + "coverage3 -m pytest", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] } + } + }, + "30": { + "created_at": 1636403009.538761, + "description": "Framework that covers the whole range from high-level modeling of optimization problems, with automatic conversion of problems to different required representations, to a suite of easy-to-use quantum optimization algorithms that are ready to run on classical simulators, as well as on real quantum devices via Qiskit.", + "labels": [ + "algorithms", + "optimization" + ], + "licence": "Apache 2.0", + "name": "qiskit-optimization", + "tier": "Community", + "updated_at": 1636403009.538763, + "url": "https://github.com/qiskit-community/qiskit-optimization", + "website": "https://qiskit.org/ecosystem/optimization", + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "skip_tests": true, + "stars": 174 + }, + "31": { + "name": "pyEPR", + "url": "https://github.com/zlatko-minev/pyEPR", + "description": "Qiskit Metal E&M analysis with Ansys and the energy-participation-ratio method is based on pyEPR.", + "licence": "BSD 3-Clause New or Revised license", + "contact_info": "zlatko.minev@ibm.com", + "alternatives": "", + "labels": [ + "plugin" ], + "created_at": 1662470654.437653, + "updated_at": 1662470654.437655, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": true, + "historical_test_results": [], + "stars": 137, "configuration": { "dependencies_files": [ "requirements.txt" ], "extra_dependencies": [ + "qiskit", "coverage", - "pylint", - "qiskit" + "pylint" ], "tests_command": [ - "pytest src/tests" + "pytest" ], "styles_check_command": [ - "pylint -rn src" + "pylint -rn pyEPR" ], "coverages_check_command": [ - "coverage run --source=\"./src/quantuminspire\" -m unittest discover -s src/tests -t src -v" + "coverage3 -m pytest", + "coverage3 report --fail-under=80" ], "language": { "name": "python", @@ -4436,392 +4471,400 @@ } } }, - "34": { - "name": "qiskit-ionq", - "url": "https://github.com/Qiskit-Partners/qiskit-ionq", - "description": "Project contains a provider that allows access to IonQ ion trap quantum systems.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", + "32": { + "name": "Qiskit Nature PySCF", + "url": "https://github.com/qiskit-community/qiskit-nature-pyscf", + "description": "Qiskit Nature PySCF is a third-party integration plugin of Qiskit Nature and PySCF.", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", "labels": [ - "provider", - "partner" + "plugin", + "chemistry" ], - "created_at": 1670427446.011674, - "updated_at": 1670427446.011675, + "created_at": 1678827878.723733, + "updated_at": 1678827878.723734, "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 30, + "stars": 13, "tests_results": [ { "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1670427446.003062, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.721648, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.011682, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723691, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.001605, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723694, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.003071, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723697, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" } ], "historical_test_results": [ { - "test_type": "standard", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1670427446.01164, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1670427446.011645, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.723702, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705234", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "development", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1670427446.011647, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921277", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.723705, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705147" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1670427446.011649, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639640" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.723707, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705182" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1670427446.011652, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639611" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.723709, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629837" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1670427446.011654, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226131" + "package_version": "0.23.0rc1", + "terra_version": "0.23.0rc1", + "timestamp": 1678827878.723711, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629761" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1670427446.011656, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226160" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.723714, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485540" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.723716, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485468" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1670427446.011659, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954337" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.723718, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023779" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1670427446.011661, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954292" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.72372, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023690" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.011665, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723725, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" }, { - "test_type": "development", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1670427446.011667, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723727, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" }, { - "test_type": "stable", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.001605, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" - } - ], - "configuration": { - "dependencies_files": [ - "requirements.txt", - "requirements-test.txt" - ], - "extra_dependencies": [], - "tests_command": [ - "python setup.py test" - ], - "styles_check_command": [ - "pylint -rn --rcfile=./.pylintrc qiskit_ionq test" - ], - "coverages_check_command": [], - "language": { - "name": "python", - "versions": [ - "3.7" - ] + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.721648, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } - } + ] }, - "35": { - "name": "sat-circuits-engine", - "url": "https://github.com/ohadlev77/sat-circuits-engine", - "description": "A Python-Qiskit-based package that provides capabilities of easily generating, executing and analyzing quantum circuits for satisfiability problems according to user-defined constraints. The circuits being generated by the program are based on Grover's algorithm and its amplitude-amplification generalization.", + "33": { + "name": "qiskit-classroom-converter", + "url": "https://github.com/KMU-quantum-classroom/qiskit-classroom-converter", + "description": "Convert quantum circuits, matrices, and bra-ket strings. This converter includes the following conversion functions: quantum circuit to bra-ket notation, quantum circuit to matrix, matrix to quantum circuit, bra-ket notation to matrix", "licence": "Apache License 2.0", - "contact_info": "ohadlev77@gmail.com", + "contact_info": "_No response_", "alternatives": "_No response_", "affiliations": "_No response_", "labels": [ - "algorithms", - "circuit" + "converter" ], - "created_at": 1678450437.835542, - "updated_at": 1678450437.835547, + "tier": "Community", + "website": "https://github.com/KMU-quantum-classroom", + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "skip_tests": false, + "historical_test_results": [], + "stars": 0 + }, + "34": { + "name": "QiskitBot", + "url": "https://github.com/infiniteregrets/QiskitBot", + "description": "A discord bot that allows you to execute Quantum Circuits, look up the Qiskit's Documentation, and search questions on the Quantum Computing StackExchange", + "licence": "Apache 2.0", + "labels": [], + "created_at": 1641938992.363096, + "updated_at": 1641938992.363099, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": true, - "historical_test_results": [], - "stars": 7 + "stars": 23 }, - "36": { - "name": "QuantumCircuits.jl", - "url": "https://github.com/Adgnitio/QuantumCircuits.jl", - "description": "QuantumCircuits is an open-source library written in Julia for working with quantum computers at the application level, especially for Quantum Finance and Quantum Machine Learning. It allows to creation and manipulation of the quantum circuits and executes them in Julia or convert them to Qiskit Python object. The library also contains the Quantum Binomial Tree implementation for derivative pricing.", - "licence": "GNU General Public License (GPL)", - "contact_info": "rafal.pracht@adgnitio.com", - "alternatives": "qiskit-finance, qiskit-machine-learning, Yao", + "35": { + "name": "Blueqat", + "url": "https://github.com/Blueqat/Blueqat", + "description": "A quantum computing SDK", + "licence": "Apache 2.0", "labels": [ - "paper implementation", - "machine learning", - "finance" + "convert" ], - "created_at": 1678827878.254124, - "updated_at": 1678827878.254125, - "styles_results": [], - "coverages_results": [], + "created_at": 1678827878.864396, + "updated_at": 1678827878.864397, "tier": "Community", "skip_tests": false, - "stars": 0, + "stars": 359, "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.252147, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.855712, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254106, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.853724, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254109, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.855721, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false } ], "historical_test_results": [ + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.864336 + }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254117, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.864341 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.864343 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.864346, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.864348, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254119, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.86435, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.252147, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - } - ] - }, - "37": { - "name": "dsm-swap", - "url": "https://github.com/qiskit-community/dsm-swap", - "description": "A doubly stochastic matrices-based approach to optimal qubit routing", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "labels": [ - "plugin", - "paper implementation", - "circuit" - ], - "created_at": 1678827878.56605, - "updated_at": 1678827878.566051, - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "stars": 7, - "tests_results": [ + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.864353, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" + }, { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.566001, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.864355, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920109", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.56399, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.864357, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638641" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.566009, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" - } - ], - "historical_test_results": [ + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.864359, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638640" + }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.566015, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225626" + "timestamp": 1678827878.864362, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319732917" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.566017, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225632" + "timestamp": 1678827878.864364, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224539" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.56602, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953428" + "timestamp": 1678827878.864366, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952019" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.566022, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953451" + "timestamp": 1678827878.864368, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951991" }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.566024, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705002" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.86437, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703336", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", @@ -4829,18 +4872,17 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.566027, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705033" + "timestamp": 1678827878.864373, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703323" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.566029, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705078", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.864375, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703183" }, { "test_type": "stable", @@ -4848,17 +4890,17 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.566031, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629546" + "timestamp": 1678827878.864377, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627601" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.566033, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485251" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.864379, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627633" }, { "test_type": "stable", @@ -4866,26 +4908,26 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.566036, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485304" + "timestamp": 1678827878.864381, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482988" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.566038, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023555" + "timestamp": 1678827878.864384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021814" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.56604, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023565" + "timestamp": 1678827878.864386, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021797" }, { "test_type": "development", @@ -4893,9 +4935,9 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.566042, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "timestamp": 1678827878.864388, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" }, { "test_type": "standard", @@ -4903,8 +4945,8 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.566044, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" + "timestamp": 1678827878.86439, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" }, { "test_type": "stable", @@ -4912,82 +4954,98 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.56399, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" + "timestamp": 1678827878.853724, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" } - ] + ], + "configuration": { + "dependencies_files": [ + "requirements.txt" + ], + "extra_dependencies": [ + "qiskit", + "Cython", + "coverage", + "pylint" + ], + "tests_command": [ + "pytest" + ], + "styles_check_command": [ + "pylint -rn blueqat tests" + ], + "coverages_check_command": [ + "coverage3 -m pytest", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] + } + } }, - "38": { - "name": "spinoza", - "url": "https://github.com/smu160/spinoza", - "description": "Spinoza is a quantum state simulator (implemented in Rust) that is one of the fastest open-source simulators. Spinoza is implemented using a functional approach. Additionally, Spinoza has a `QuantumCircuit` object-oriented interface, which partially matches Qiskit's interface. Spinoza is capable of running in a myriad of computing environments (e.g., small workstations), and on various architectures. At this juncture, Spinoza only utilizes a single thread; however, it is designed to be easily extended into a parallel version, as well as a distributed version. The paper associated with Spinoza is available [here](https://arxiv.org/pdf/2303.01493.pdf).", - "licence": "Apache License 2.0", - "contact_info": "sy2685@columbia.edu", - "alternatives": "_No response_", - "affiliations": "_No response_", + "36": { + "created_at": 1636403010.012954, + "description": "The Machine Learning package contains sample datasets and quantum ML algorithms.", "labels": [ - "simulation" + "algorithms", + "machine learning" ], - "created_at": 1683727562.604629, - "updated_at": 1683727562.604634, + "licence": "Apache 2.0", + "name": "qiskit-machine-learning", + "tier": "Community", + "updated_at": 1636403010.012956, + "url": "https://github.com/qiskit-community/qiskit-machine-learning", + "website": "https://qiskit.org/ecosystem/machine-learning", "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Community", "skip_tests": true, - "historical_test_results": [], - "stars": 4 + "stars": 473 }, - "39": { - "name": "python-open-controls", - "url": "https://github.com/qctrl/python-open-controls", - "description": "Q-CTRL Open Controls is an open-source Python package that makes it easy to create and deploy established error-robust quantum control protocols from the open literature", + "37": { + "name": "pytorch-quantum", + "url": "https://github.com/mit-han-lab/pytorch-quantum", + "description": "A PyTorch-centric hybrid classical-quantum dynamic neural networks framework.", "licence": "Apache 2.0", "labels": [ - "hardware" + "machine learning" ], - "created_at": 1678827878.68594, - "updated_at": 1678827878.68594, + "created_at": 1678827878.611621, + "updated_at": 1678827878.611622, "tier": "Community", "skip_tests": false, - "stars": 89, + "stars": 759, "tests_results": [ - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.677212, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "last passing version", - "passed": true, + { + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.685948, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.602838, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.675149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" + "timestamp": 1678827878.602844, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.677223, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.60056, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" } ], "styles_results": [ @@ -5004,238 +5062,254 @@ ], "historical_test_results": [ { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.611555 + }, + { + "test_type": "development", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.685884, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" + "timestamp": 1678827878.611561 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.611563 }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.685889, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" + "timestamp": 1678827878.611566, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.611568, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" + }, + { + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.685892, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" + "timestamp": 1678827878.61157, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.685894, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" + "timestamp": 1678827878.611572, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.685896, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3134449307", - "package_commit_hash": "672e95d089ba0e834915796f2b1d59527f3b4ef2" + "timestamp": 1678827878.611577, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920482", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.685899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638751" + "timestamp": 1678827878.611579, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638971" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.685901, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638746" + "package_version": "0.18.3", + "terra_version": "0.18.3", + "timestamp": 1678827878.611581, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319733310" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.685903, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224632" + "timestamp": 1678827878.611584, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224766" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.685905, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224622" + "timestamp": 1678827878.611586, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224775" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.685907, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952236" + "timestamp": 1678827878.611588, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952548" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.68591, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952183" + "timestamp": 1678827878.61159, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952575" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.685912, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703617", + "timestamp": 1678827878.611593, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704035", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.685914, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703451" + "timestamp": 1678827878.611595, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703995" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.685916, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703538" + "timestamp": 1678827878.611597, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703922" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.685918, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627765" + "timestamp": 1678827878.611599, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628138" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.68592, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627780" + "timestamp": 1678827878.611601, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628139" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.685923, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483343" + "timestamp": 1678827878.611604, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483696" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.685925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483261" + "timestamp": 1678827878.611606, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483765" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.685927, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021941" + "timestamp": 1678827878.611608, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022339" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.685929, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022030" + "timestamp": 1678827878.61161, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022382" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.611612, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.685932, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", + "timestamp": 1678827878.611615, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.685934, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" - }, - { - "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.675149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.60056, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" } ], "configuration": { - "dependencies_files": [], + "dependencies_files": [ + "requirements.txt" + ], "extra_dependencies": [ "qiskit", "coverage", - "numpy==1.*,>=1.20.0", - "toml==0.*,>=0.10.0", - "black==20.*,>=20.8.0.b1", - "isort==5.*,>=5.7.0", - "mypy==0.*,>=0.800.0", - "nbval==0.*,>=0.9.5", - "pre-commit==2.*,>=2.9.3", - "pylint==2.*,>=2.6.0", - "pylint-runner==0.*,>=0.5.4", - "pytest==5.*,>=5.0.0", - "qctrl-visualizer==2.*,>=2.12.2" + "pylint" ], "tests_command": [ "pytest" ], "styles_check_command": [ - "pylint -rn qctrlopencontrols tests" + "pylint -rn torchquantum test" ], "coverages_check_command": [ "coverage3 -m pytest", @@ -5249,69 +5323,91 @@ } } }, - "40": { - "name": "pytket-qiskit", - "url": "https://github.com/CQCL/pytket-extensions/tree/develop/modules/pytket-qiskit", - "description": "an extension to Pytket (a python module for interfacing with CQC tket) that allows Pytket circuits to be run on IBM backends and simulators, as well as conversion to and from Qiskit representations.", + "38": { + "name": "zoose-codespace", + "url": "https://github.com/ianhellstrom/zoose-codespace", + "description": "GitHub Codespace template repository based on Zoose Quantum, a custom Docker image with everything included, so you can be up and running with any of the major quantum libraries (incl. Qiskit) with only two clicks! No installation required. Ideal for beginners or people who want to code quantum circuits on the go. Code quantum circuits straight in your browser with VSCode.", + "licence": "MIT license", + "contact_info": "ian \\[..at..\\] databaseline \\[..dot..\\] tech", + "alternatives": "qBraid: commercial hosted notebooks", + "labels": [ + "notebook" + ], + "created_at": 1670402642.907656, + "updated_at": 1670402642.907662, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": true, + "historical_test_results": [], + "stars": 0 + }, + "39": { + "name": "q-kernel-ops", + "url": "https://github.com/Travis-S-IBM/q-kernel-ops", + "description": "Code base on the paper Kernel Matrix Completion for Offline Quantum-Enhanced Machine Learning [2112.08449](https://arxiv.org/abs/2112.08449).", "licence": "Apache 2.0", + "contact_info": "### Email", + "alternatives": "### Alternatives", "labels": [ - "plugin" + "QAMP" ], - "created_at": 1661869851.523229, - "updated_at": 1661869851.523229, + "created_at": 1678827878.663275, + "updated_at": 1678827878.663276, + "styles_results": [], + "coverages_results": [], "tier": "Community", "skip_tests": false, + "stars": 3, "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.523199, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", - "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663244, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.523204, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663249, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.522323, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.661149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" } ], "historical_test_results": [ + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.663257, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654390" + }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "-", "terra_version": "-", - "timestamp": 1661869851.52322, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" + "timestamp": 1678827878.66326, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654418" }, { "test_type": "development", @@ -5319,167 +5415,136 @@ "package": "qiskit-terra", "package_version": "-", "terra_version": "-", - "timestamp": 1661869851.523222, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", - "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" + "timestamp": 1678827878.663262, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654437", + "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663267, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663269, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.522323, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.661149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" } ] }, - "41": { - "name": "zoose-codespace", - "url": "https://github.com/ianhellstrom/zoose-codespace", - "description": "GitHub Codespace template repository based on Zoose Quantum, a custom Docker image with everything included, so you can be up and running with any of the major quantum libraries (incl. Qiskit) with only two clicks! No installation required. Ideal for beginners or people who want to code quantum circuits on the go. Code quantum circuits straight in your browser with VSCode.", - "licence": "MIT license", - "contact_info": "ian \\[..at..\\] databaseline \\[..dot..\\] tech", - "alternatives": "qBraid: commercial hosted notebooks", + "40": { + "name": "quantum-tetris", + "url": "https://github.com/olivierbrcknr/quantum-tetris", + "description": "What would happen if you combine Tetris with a Quantum computer? The winning entry of the Quantum Design Jam from IBM and Parsons in October 2021 explores just that!", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "affiliations": "_No response_", "labels": [ - "notebook" + "game" ], - "created_at": 1670402642.907656, - "updated_at": 1670402642.907662, + "created_at": 1679712086.990215, + "updated_at": 1679712086.99022, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": true, "historical_test_results": [], - "stars": 0 + "stars": 9 }, - "42": { - "name": "qtcodes", - "url": "https://github.com/yaleqc/qtcodes", - "description": "Qiskit Topological Codes", + "41": { + "name": "qiskit-ionq", + "url": "https://github.com/Qiskit-Partners/qiskit-ionq", + "description": "Project contains a provider that allows access to IonQ ion trap quantum systems.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ - "plugin" + "provider", + "partner" ], - "created_at": 1678827878.827901, - "updated_at": 1678827878.827902, + "created_at": 1670427446.011674, + "updated_at": 1670427446.011675, + "styles_results": [], + "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 82, + "stars": 30, "tests_results": [ { "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.819181, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1670427446.003062, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", + "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.819186, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.819189, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.817194, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false - } - ], - "historical_test_results": [ - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.827841 - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.827846 + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.011682, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.827849 + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.001605, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.827851, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.827854, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" - }, + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.003071, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" + } + ], + "historical_test_results": [ { "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.827856, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" + "timestamp": 1670427446.01164, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.827858, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" + "timestamp": 1670427446.011645, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" }, { "test_type": "development", @@ -5487,8 +5552,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.827861, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919232", + "timestamp": 1670427446.011647, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921277", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -5497,8 +5562,8 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.827863, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919153" + "timestamp": 1670427446.011649, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639640" }, { "test_type": "stable", @@ -5506,63 +5571,44 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.827865, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637904" + "timestamp": 1670427446.011652, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639611" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.827867, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223904" + "timestamp": 1670427446.011654, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226131" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.827869, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223902" + "timestamp": 1670427446.011656, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226160" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.827871, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950844" + "timestamp": 1670427446.011659, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954337" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.827874, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950941" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.827876, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701356", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.827878, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701333" + "timestamp": 1670427446.011661, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954292" }, { "test_type": "standard", @@ -5570,238 +5616,89 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.82788, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701250" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.827882, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625932" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.827885, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481542" + "timestamp": 1670427446.011665, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" }, { - "test_type": "standard", + "test_type": "development", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.827887, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481466" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.827889, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020538" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.827891, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020492" + "timestamp": 1670427446.011667, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", + "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.827893, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.827895, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.817194, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" - } - ], - "configuration": { - "dependencies_files": [], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint", - "numpy", - "matplotlib>=3.3.0", - "retworkx>=0.10.0", - "tqdm", - "pylatexenc", - "IPython", - "mypy", - "black", - "pytest" - ], - "tests_command": [ - "python -m unittest" - ], - "styles_check_command": [ - "pylint -rn qtcodes" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.001605, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" } - } - } - }, - "Main": { - "0": { - "name": "qiskit-ibm-provider", - "url": "https://github.com/Qiskit/qiskit-ibm-provider", - "description": "Project contains a provider that allows accessing the IBM Quantum systems and simulators.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "affiliations": "IBM", - "labels": [ - "provider", - "partner" ], - "created_at": 1654696732.591266, - "updated_at": 1654696732.591279, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Main", - "skip_tests": true, - "stars": 57, "configuration": { "dependencies_files": [ "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "tests_command": [ - "python -m unittest -v" - ], - "styles_check_command": [ - "pylint -rn --rcfile=./.pylintrc test" - ], - "coverages_check_command": [], - "language": { - "name": "python", - "versions": [ - "3.7" - ] - } - } - }, - "1": { - "name": "OpenQASM", - "url": "https://github.com/openqasm/openqasm", - "website": "https://openqasm.com/", - "description": "OpenQASM is an imperative programming language designed for near-term quantum computing algorithms and applications. Quantum programs are described using the measurement-based quantum circuit model with support for classical feed-forward flow control based on measurement outcomes.", - "licence": "Apache 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "OpenQASM specification contributors", - "labels": [ - "openqasm" - ], - "created_at": 1660223774.444544, - "updated_at": 1660223774.44455, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Main", - "skip_tests": true, - "historical_test_results": [], - "stars": 1011 - }, - "2": { - "created_at": 1636403010.377695, - "description": "Aer provides high-performance quantum computing simulators with realistic noise models.", - "labels": [ - "circuit simulator" - ], - "licence": "Apache 2.0", - "name": "qiskit-aer", - "tier": "Main", - "updated_at": 1636403010.377697, - "url": "https://github.com/Qiskit/qiskit-aer", - "website": "https://qiskit.org/ecosystem/aer", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "stars": 383 + "requirements-test.txt" + ], + "extra_dependencies": [], + "tests_command": [ + "python setup.py test" + ], + "styles_check_command": [ + "pylint -rn --rcfile=./.pylintrc qiskit_ionq test" + ], + "coverages_check_command": [], + "language": { + "name": "python", + "versions": [ + "3.7" + ] + } + } }, - "3": { - "name": "qiskit-ibm-runtime", - "url": "https://github.com/qiskit/qiskit-ibm-runtime", - "description": "This module provides the interface to access Qiskit Runtime.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "affiliations": "IBM", + "42": { + "name": "spinoza", + "url": "https://github.com/smu160/spinoza", + "description": "Spinoza is a quantum state simulator (implemented in Rust) that is one of the fastest open-source simulators. Spinoza is implemented using a functional approach. Additionally, Spinoza has a `QuantumCircuit` object-oriented interface, which partially matches Qiskit's interface. Spinoza is capable of running in a myriad of computing environments (e.g., small workstations), and on various architectures. At this juncture, Spinoza only utilizes a single thread; however, it is designed to be easily extended into a parallel version, as well as a distributed version. The paper associated with Spinoza is available [here](https://arxiv.org/pdf/2303.01493.pdf).", + "licence": "Apache License 2.0", + "contact_info": "sy2685@columbia.edu", + "alternatives": "_No response_", + "affiliations": "_No response_", "labels": [ - "provider", - "partner" + "simulation" ], - "created_at": 1654696489.147673, - "updated_at": 1654696489.147699, + "created_at": 1683727562.604629, + "updated_at": 1683727562.604634, "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Main", + "tier": "Community", "skip_tests": true, - "stars": 87 + "historical_test_results": [], + "stars": 4 } }, "Extensions": { "0": { - "name": "mthree", - "url": "https://github.com/Qiskit-Partners/mthree", - "description": "Matrix-free Measurement Mitigation (M3)", + "name": "qiskit-alt", + "url": "https://github.com/Qiskit-Extensions/qiskit-alt", + "description": "Python package uses a backend written in Julia to implement high performance features for standard Qiskit.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", - "labels": [], - "created_at": 1678827878.805163, - "updated_at": 1678827878.805164, + "labels": [ + "julia" + ], + "created_at": 1678827878.588404, + "updated_at": 1678827878.588404, "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": false, - "stars": 25, "tests_results": [ { "test_type": "development", @@ -5809,27 +5706,18 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.794529, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", + "timestamp": 1678827878.579716, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.796509, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" - }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.796511, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.579721, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" }, { "test_type": "standard", @@ -5837,202 +5725,193 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.796514, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" + "timestamp": 1678827878.577781, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" } ], "historical_test_results": [ { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.805108, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" + "timestamp": 1678827878.588354, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.805114, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.805116, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921293" + "timestamp": 1678827878.588359, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.805119, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921367", + "timestamp": 1678827878.588362, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920833", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.588364, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639231" + }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.805121, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639689" + "timestamp": 1678827878.588367, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639249" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.805123, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226321" + "timestamp": 1678827878.588369, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225683" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.805125, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226347" + "timestamp": 1678827878.588371, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225703" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.805127, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469025244" + "timestamp": 1678827878.588373, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953654" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.80513, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954458" + "timestamp": 1678827878.588375, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953616" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.805132, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706305" + "timestamp": 1678827878.588378, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881842278" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.805134, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706326", + "timestamp": 1678827878.58838, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705487", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.805136, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706246" + "timestamp": 1678827878.588382, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705437" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.805139, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631633" + "timestamp": 1678827878.588384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630330" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.805141, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631645" + "timestamp": 1678827878.588386, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630381" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.805143, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486650" + "timestamp": 1678827878.588389, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485690" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.805145, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486607" + "timestamp": 1678827878.588391, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485740" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.805148, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" + "timestamp": 1678827878.588393, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.805152, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024915" + "timestamp": 1678827878.588395, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023911" }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.805155, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.588397, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.805157, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.794529, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "timestamp": 1678827878.577781, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" } ], "configuration": { @@ -6042,10 +5921,10 @@ ], "extra_dependencies": [], "tests_command": [ - "pytest -p no:warnings --pyargs mthree/test" + "pytest -p no:warnings --pyargs test" ], "styles_check_command": [ - "pylint -rn mthree" + "pylint -rn src" ], "coverages_check_command": [], "language": { @@ -6056,72 +5935,90 @@ } } }, - "1": { - "name": "Quantum Random Access Optimization", - "url": "https://github.com/qiskit-community/prototype-qrao", - "description": "The Quantum Random Access Optimization (QRAO) module is designed to enable users to leverage a new quantum method for combinatorial optimization problems.", + "1": { + "name": "qiskit-research", + "url": "https://github.com/qiskit-community/qiskit-research", + "description": "This project contains modules for running quantum computing research experiments using Qiskit and the IBM Quantum Services, demonstrating by example best practices for running such experiments.", + "licence": "Apache 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "affiliations": "_No response_", + "labels": [ + "paper implementation" + ], + "created_at": 1662992208.202283, + "updated_at": 1662992208.20229, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Extensions", + "skip_tests": true, + "historical_test_results": [], + "stars": 56 + }, + "2": { + "name": "mthree", + "url": "https://github.com/Qiskit-Partners/mthree", + "description": "Matrix-free Measurement Mitigation (M3)", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", - "labels": [ - "optimization", - "prototype" - ], - "created_at": 1678827878.909912, - "updated_at": 1678827878.909913, + "labels": [], + "created_at": 1678827878.805163, + "updated_at": 1678827878.805164, "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": false, - "stars": 27, + "stars": 25, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.89925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", + "timestamp": 1678827878.794529, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.901233, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.796509, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.901236, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" + "timestamp": 1678827878.796511, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.901239, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" + "timestamp": 1678827878.796514, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" } ], "historical_test_results": [ { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.909858, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" + "timestamp": 1678827878.805108, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" }, { "test_type": "standard", @@ -6129,18 +6026,8 @@ "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.909863, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.909866, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921127", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "timestamp": 1678827878.805114, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" }, { "test_type": "standard", @@ -6148,26 +6035,27 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.909868, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639520" + "timestamp": 1678827878.805116, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921293" }, { - "test_type": "stable", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.90987, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639517" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.805119, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921367", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.909872, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226033" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.805121, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639689" }, { "test_type": "standard", @@ -6175,17 +6063,17 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.909875, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225981" + "timestamp": 1678827878.805123, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226321" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.909877, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954179" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.805125, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226347" }, { "test_type": "stable", @@ -6193,17 +6081,17 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.909879, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954205" + "timestamp": 1678827878.805127, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469025244" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.909881, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705929" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.80513, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954458" }, { "test_type": "stable", @@ -6211,8 +6099,8 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.909884, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705953" + "timestamp": 1678827878.805132, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706305" }, { "test_type": "development", @@ -6220,18 +6108,27 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.909886, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705973", + "timestamp": 1678827878.805134, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706326", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.805136, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706246" + }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.909888, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631129" + "timestamp": 1678827878.805139, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631633" }, { "test_type": "stable", @@ -6239,150 +6136,96 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.90989, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631163" + "timestamp": 1678827878.805141, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631645" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.909892, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486294" + "timestamp": 1678827878.805143, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486650" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.909895, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486355" + "timestamp": 1678827878.805145, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486607" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.909897, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024475" + "timestamp": 1678827878.805148, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.909899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024540" + "timestamp": 1678827878.805152, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024915" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.909903, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" + "timestamp": 1678827878.805155, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.909906, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" + "timestamp": 1678827878.805157, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" }, { "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.89925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - } - ], - "configuration": { - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "tests_command": [ - "pip check", - "python -m pytest" - ], - "styles_check_command": [ - "black ." - ], - "coverages_check_command": [], - "language": { - "name": "python", - "versions": [ - "3.7" - ] - } - } - }, - "2": { - "created_at": 1661785302.25299, - "description": "Qiskit Experiments is an open-source project for running characterizing, calibrating, and benchmarking experiments in Qiskit.", - "labels": [ - "algorithms" - ], - "licence": "Apache 2.0", - "name": "qiskit-experiments", - "tier": "Extensions", - "updated_at": 1661785302.25299, - "url": "https://github.com/Qiskit-Extensions/qiskit-experiments", - "website": "https://qiskit.org/ecosystem/experiments/", - "tests_results": [], - "skip_tests": true, - "stars": 116 - }, - "3": { - "name": "qiskit-research", - "url": "https://github.com/qiskit-community/qiskit-research", - "description": "This project contains modules for running quantum computing research experiments using Qiskit and the IBM Quantum Services, demonstrating by example best practices for running such experiments.", - "licence": "Apache 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "paper implementation" - ], - "created_at": 1662992208.202283, - "updated_at": 1662992208.20229, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Extensions", - "skip_tests": true, - "historical_test_results": [], - "stars": 56 - }, - "4": { - "created_at": 1628883441.121108, - "description": "Dynamics is an open-source project for building, transforming, and solving time-dependent quantum systems in Qiskit.", - "labels": [ - "simulation" + "passed": false, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.794529, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + } ], - "licence": "Apache 2.0", - "name": "qiskit-dynamics", - "tier": "Extensions", - "updated_at": 1628883441.121111, - "url": "https://github.com/Qiskit-Extensions/qiskit-dynamics", - "website": "https://qiskit.org/ecosystem/dynamics/", - "tests_results": [], - "skip_tests": true, - "stars": 74 + "configuration": { + "dependencies_files": [ + "requirements.txt", + "requirements-dev.txt" + ], + "extra_dependencies": [], + "tests_command": [ + "pytest -p no:warnings --pyargs mthree/test" + ], + "styles_check_command": [ + "pylint -rn mthree" + ], + "coverages_check_command": [], + "language": { + "name": "python", + "versions": [ + "3.7" + ] + } + } }, - "5": { + "3": { "name": "quantum-serverless", "url": "https://github.com/Qiskit-Extensions/quantum-serverless", "description": "The Quantum Serverless package aims to allow developers to easily offload computations to cloud resources, without being experts in packaging code for remote execution environments.", @@ -6431,99 +6274,138 @@ } ] }, + "4": { + "name": "Quantum kernel training", + "url": "https://github.com/qiskit-community/prototype-quantum-kernel-training", + "description": "The quantum kernel training (QKT) toolkit is designed to enable users to leverage quantum kernels for machine learning tasks; in particular, researchers who are interested in investigating quantum kernel training algorithms in their own research, as well as practitioners looking to explore and apply these algorithms to their machine learning applications.", + "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", + "labels": [ + "prototype", + "machine learning" + ], + "created_at": 1645480343.964777, + "updated_at": 1645480343.964777, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Extensions", + "skip_tests": true, + "configuration": { + "dependencies_files": [ + "requirements.txt", + "requirements-dev.txt" + ], + "extra_dependencies": [], + "tests_command": [ + "treon docs/ --threads 1" + ], + "styles_check_command": [ + "black --check docs" + ], + "coverages_check_command": [], + "language": { + "name": "python", + "versions": [ + "3.7" + ] + } + } + }, + "5": { + "created_at": 1661785302.25299, + "description": "Qiskit Experiments is an open-source project for running characterizing, calibrating, and benchmarking experiments in Qiskit.", + "labels": [ + "algorithms" + ], + "licence": "Apache 2.0", + "name": "qiskit-experiments", + "tier": "Extensions", + "updated_at": 1661785302.25299, + "url": "https://github.com/Qiskit-Extensions/qiskit-experiments", + "website": "https://qiskit.org/ecosystem/experiments/", + "tests_results": [], + "skip_tests": true, + "stars": 116 + }, "6": { - "name": "circuit-knitting-toolbox", - "url": "https://github.com/Qiskit-Extensions/circuit-knitting-toolbox", - "description": "Circuit Knitting is the process of decomposing a quantum circuit into smaller circuits, executing those smaller circuits on a quantum processor(s), and then knitting their results into a reconstruction of the original circuit's outcome. Circuit knitting includes techniques such as entanglement forging, circuit cutting, and classical embedding. The Circuit Knitting Toolbox (CKT) is a collection of such tools.", - "licence": "Apache License 2.0", - "contact_info": "blake.johnson@ibm.com", + "name": "qiskit-qec", + "url": "https://github.com/qiskit-community/qiskit-qec", + "description": "Framework for Quantum Error Correction is an open-source framework for developers, experimentalist and theorists of Quantum Error Correction (QEC).", + "licence": "Apache 2.0", + "contact_info": "_No response_", "alternatives": "_No response_", + "affiliations": "_No response_", "labels": [ - "algorithms" + "algorithms", + "QEC", + "circuit" ], - "created_at": 1670427445.884067, - "updated_at": 1670427445.884068, + "created_at": 1662992390.122591, + "updated_at": 1662992390.122597, + "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": true, - "historical_test_results": [], - "stars": 46, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1670427445.882592, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096614", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1670427445.884051, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096615" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1670427445.884055, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096587" - } - ] + "historical_test_results": [] }, "7": { - "name": "qiskit-alt", - "url": "https://github.com/Qiskit-Extensions/qiskit-alt", - "description": "Python package uses a backend written in Julia to implement high performance features for standard Qiskit.", + "name": "Quantum Random Access Optimization", + "url": "https://github.com/qiskit-community/prototype-qrao", + "description": "The Quantum Random Access Optimization (QRAO) module is designed to enable users to leverage a new quantum method for combinatorial optimization problems.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ - "julia" + "optimization", + "prototype" ], - "created_at": 1678827878.588404, - "updated_at": 1678827878.588404, + "created_at": 1678827878.909912, + "updated_at": 1678827878.909913, "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": false, + "stars": 27, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.579716, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", + "timestamp": 1678827878.89925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.901233, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" + }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.579721, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.901236, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.577781, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" + "timestamp": 1678827878.901239, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" } ], "historical_test_results": [ @@ -6533,182 +6415,191 @@ "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.588354, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" + "timestamp": 1678827878.909858, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.588359, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" + "timestamp": 1678827878.909863, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.588362, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920833", + "timestamp": 1678827878.909866, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921127", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.588364, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639231" + "timestamp": 1678827878.909868, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639520" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.588367, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639249" + "timestamp": 1678827878.90987, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639517" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.588369, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225683" + "timestamp": 1678827878.909872, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226033" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.588371, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225703" + "timestamp": 1678827878.909875, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225981" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.588373, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953654" + "timestamp": 1678827878.909877, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954179" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.588375, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953616" + "timestamp": 1678827878.909879, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954205" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.909881, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705929" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.588378, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881842278" + "timestamp": 1678827878.909884, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705953" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.58838, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705487", + "timestamp": 1678827878.909886, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705973", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.588382, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705437" - }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.588384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630330" + "timestamp": 1678827878.909888, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631129" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.588386, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630381" + "timestamp": 1678827878.90989, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631163" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.588389, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485690" + "timestamp": 1678827878.909892, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486294" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.588391, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485740" + "timestamp": 1678827878.909895, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486355" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.588393, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" + "timestamp": 1678827878.909897, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024475" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.588395, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023911" + "timestamp": 1678827878.909899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024540" }, { - "test_type": "development", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.588397, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.909903, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.577781, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" + "timestamp": 1678827878.909906, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.89925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } ], "configuration": { @@ -6718,10 +6609,11 @@ ], "extra_dependencies": [], "tests_command": [ - "pytest -p no:warnings --pyargs test" + "pip check", + "python -m pytest" ], "styles_check_command": [ - "pylint -rn src" + "black ." ], "coverages_check_command": [], "language": { @@ -6954,23 +6846,92 @@ } }, "9": { - "name": "Quantum kernel training", - "url": "https://github.com/qiskit-community/prototype-quantum-kernel-training", - "description": "The quantum kernel training (QKT) toolkit is designed to enable users to leverage quantum kernels for machine learning tasks; in particular, researchers who are interested in investigating quantum kernel training algorithms in their own research, as well as practitioners looking to explore and apply these algorithms to their machine learning applications.", + "created_at": 1628883441.121108, + "description": "Dynamics is an open-source project for building, transforming, and solving time-dependent quantum systems in Qiskit.", + "labels": [ + "simulation" + ], + "licence": "Apache 2.0", + "name": "qiskit-dynamics", + "tier": "Extensions", + "updated_at": 1628883441.121111, + "url": "https://github.com/Qiskit-Extensions/qiskit-dynamics", + "website": "https://qiskit.org/ecosystem/dynamics/", + "tests_results": [], + "skip_tests": true, + "stars": 74 + }, + "10": { + "name": "circuit-knitting-toolbox", + "url": "https://github.com/Qiskit-Extensions/circuit-knitting-toolbox", + "description": "Circuit Knitting is the process of decomposing a quantum circuit into smaller circuits, executing those smaller circuits on a quantum processor(s), and then knitting their results into a reconstruction of the original circuit's outcome. Circuit knitting includes techniques such as entanglement forging, circuit cutting, and classical embedding. The Circuit Knitting Toolbox (CKT) is a collection of such tools.", + "licence": "Apache License 2.0", + "contact_info": "blake.johnson@ibm.com", + "alternatives": "_No response_", + "labels": [ + "algorithms" + ], + "created_at": 1670427445.884067, + "updated_at": 1670427445.884068, + "styles_results": [], + "coverages_results": [], + "tier": "Extensions", + "skip_tests": true, + "historical_test_results": [], + "stars": 46, + "tests_results": [ + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1670427445.882592, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096614", + "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1670427445.884051, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096615" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1670427445.884055, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096587" + } + ] + } + }, + "Main": { + "0": { + "name": "qiskit-ibm-provider", + "url": "https://github.com/Qiskit/qiskit-ibm-provider", + "description": "Project contains a provider that allows accessing the IBM Quantum systems and simulators.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", + "affiliations": "IBM", "labels": [ - "prototype", - "machine learning" + "provider", + "partner" ], - "created_at": 1645480343.964777, - "updated_at": 1645480343.964777, + "created_at": 1654696732.591266, + "updated_at": 1654696732.591279, "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Extensions", + "tier": "Main", "skip_tests": true, + "stars": 57, "configuration": { "dependencies_files": [ "requirements.txt", @@ -6978,10 +6939,10 @@ ], "extra_dependencies": [], "tests_command": [ - "treon docs/ --threads 1" + "python -m unittest -v" ], "styles_check_command": [ - "black --check docs" + "pylint -rn --rcfile=./.pylintrc test" ], "coverages_check_command": [], "language": { @@ -6992,27 +6953,66 @@ } } }, - "10": { - "name": "qiskit-qec", - "url": "https://github.com/qiskit-community/qiskit-qec", - "description": "Framework for Quantum Error Correction is an open-source framework for developers, experimentalist and theorists of Quantum Error Correction (QEC).", + "1": { + "created_at": 1636403010.377695, + "description": "Aer provides high-performance quantum computing simulators with realistic noise models.", + "labels": [ + "circuit simulator" + ], + "licence": "Apache 2.0", + "name": "qiskit-aer", + "tier": "Main", + "updated_at": 1636403010.377697, + "url": "https://github.com/Qiskit/qiskit-aer", + "website": "https://qiskit.org/ecosystem/aer", + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "skip_tests": true, + "stars": 383 + }, + "2": { + "name": "OpenQASM", + "url": "https://github.com/openqasm/openqasm", + "website": "https://openqasm.com/", + "description": "OpenQASM is an imperative programming language designed for near-term quantum computing algorithms and applications. Quantum programs are described using the measurement-based quantum circuit model with support for classical feed-forward flow control based on measurement outcomes.", "licence": "Apache 2.0", "contact_info": "_No response_", "alternatives": "_No response_", - "affiliations": "_No response_", + "affiliations": "OpenQASM specification contributors", "labels": [ - "algorithms", - "QEC", - "circuit" + "openqasm" ], - "created_at": 1662992390.122591, - "updated_at": 1662992390.122597, + "created_at": 1660223774.444544, + "updated_at": 1660223774.44455, "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Extensions", + "tier": "Main", "skip_tests": true, - "historical_test_results": [] + "historical_test_results": [], + "stars": 1011 + }, + "3": { + "name": "qiskit-ibm-runtime", + "url": "https://github.com/qiskit/qiskit-ibm-runtime", + "description": "This module provides the interface to access Qiskit Runtime.", + "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", + "affiliations": "IBM", + "labels": [ + "provider", + "partner" + ], + "created_at": 1654696489.147673, + "updated_at": 1654696489.147699, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Main", + "skip_tests": true, + "stars": 87 } } } \ No newline at end of file From 0a1a15e1b625fde4325bfd226a39ae5f37ab3928 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 12:22:27 +0200 Subject: [PATCH 09/45] add labels --- .github/workflows/ecosystem-submission.yml | 43 ++++++++++++++++++++-- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index b444f54efd..0311431e06 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -4,8 +4,8 @@ name: Ecosystem | Submission check # - install deps # - parse issue # - run lint, coverage, tests +# - create pr # - comment result -# - link pr to issue on: issues: @@ -25,6 +25,9 @@ jobs: steps: # setup deps - uses: actions/checkout@v3 + - uses: actions-ecosystem/action-add-labels@v1 + with: + labels: submission - name: Set up Python ${{ env.python-version }} uses: actions/setup-python@v4 with: @@ -35,7 +38,7 @@ jobs: pip install -r requirements.txt pip install -r requirements-dev.txt - # workflow + # Python workflow - name: Parse submission id: parse-issue env: @@ -117,6 +120,7 @@ jobs: --repo_labels="$SUBMISSION_LABELS" \ --repo_website="$SUBMISSION_WEBSITE" + # PR stuff - name: Commit changes and create Pull Request id: cpr uses: peter-evans/create-pull-request@v5 @@ -126,9 +130,27 @@ jobs: body: | Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. Closes #${{ github.event.issue.number }} + Standard check passed : ${{ steps.check-return.outputs.PASS_STD }} branch: submission-${{ github.event.issue.number }} + labels: submission base: main + - name: PR labeling status ready + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} + with: + number: ${{ steps.cpr.outputs.pull-request-number }} + labels: ready + + - name: PR labeling status on hold + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} + with: + number: ${{ steps.cpr.outputs.pull-request-number }} + labels: on hold + + # Issue stuff + ## Standard - name: Create comment on success for standard check if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} uses: peter-evans/create-or-update-comment@v3 @@ -137,17 +159,30 @@ jobs: body: | Successfull submission! :sparkles: PR #${{ steps.cpr.outputs.pull-request-number }} - - name: Create comment on failure + - name: Create comment on failure for standard check if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} body: | - Submission PR #${{ steps.cpr.outputs.pull-request-number }} has been created with errors in tests :warning: + Submission PR #${{ steps.cpr.outputs.pull-request-number }} has been created with errors in tests :error: See logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project Read more here https://github.com/qiskit-community/ecosystem/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem + - name: Issue labeling status ready + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} + with: + labels: ready + + - name: Issue labeling status on hold + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} + with: + labels: on hold + + ## Stable / Dev - name: Create comment on success for stable check if: ${{ steps.check-return.outputs.PASS_STB == 'True' }} uses: peter-evans/create-or-update-comment@v3 From bc4d2c1bf0381f757accf390a5c72ab74249cab6 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 12:37:19 +0200 Subject: [PATCH 10/45] clean --- .github/workflows/ecosystem-submission.yml | 4 +- ecosystem/resources/members.json | 7018 ++++++++++---------- 2 files changed, 3512 insertions(+), 3510 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 0311431e06..dff68d63f2 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -129,8 +129,10 @@ jobs: title: Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. body: | Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. - Closes #${{ github.event.issue.number }} Standard check passed : ${{ steps.check-return.outputs.PASS_STD }} + + --- + Closes #${{ github.event.issue.number }} branch: submission-${{ github.event.issue.number }} labels: submission base: main diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 19b32b05da..55fa41c3dc 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -1,18 +1,18 @@ { "Community": { "0": { - "name": "quantuminspire", - "url": "https://github.com/QuTech-Delft/quantuminspire", - "description": "platform allows to execute quantum algorithms using the cQASM language.", + "name": "Blueqat", + "url": "https://github.com/Blueqat/Blueqat", + "description": "A quantum computing SDK", "licence": "Apache 2.0", "labels": [ - "algorithms" + "convert" ], - "created_at": 1678827878.401835, - "updated_at": 1678827878.401836, + "created_at": 1678827878.864396, + "updated_at": 1678827878.864397, "tier": "Community", "skip_tests": false, - "stars": 57, + "stars": 359, "tests_results": [ { "test_type": "development", @@ -20,18 +20,9 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.393127, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.393133, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" + "timestamp": 1678827878.855712, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" }, { "test_type": "stable", @@ -39,8 +30,8 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.393136, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" + "timestamp": 1678827878.853724, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" }, { "test_type": "standard", @@ -48,8 +39,8 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.391164, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" + "timestamp": 1678827878.855721, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" } ], "styles_results": [ @@ -61,25 +52,25 @@ "coverages_results": [ { "coverage_type": "", - "passed": true + "passed": false } ], "historical_test_results": [ - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.401772 - }, { "test_type": "development", "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.401778 + "timestamp": 1678827878.864336 + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.864341 }, { "test_type": "stable", @@ -87,107 +78,107 @@ "package": "qiskit-terra", "package_version": "0.20.2", "terra_version": "0.20.2", - "timestamp": 1678827878.40178 + "timestamp": 1678827878.864343 }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.401782, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" + "timestamp": 1678827878.864346, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.401785, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" + "timestamp": 1678827878.864348, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.401787, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" + "timestamp": 1678827878.86435, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.401789, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" + "timestamp": 1678827878.864353, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.401792, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919652", + "timestamp": 1678827878.864355, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920109", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.401794, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638229" + "timestamp": 1678827878.864357, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638641" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.401796, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638217" + "timestamp": 1678827878.864359, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638640" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.401798, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224170" + "timestamp": 1678827878.864362, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319732917" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.4018, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224153" + "timestamp": 1678827878.864364, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224539" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.401803, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951415" + "timestamp": 1678827878.864366, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952019" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.401805, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951365" + "timestamp": 1678827878.864368, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951991" }, { "test_type": "development", @@ -195,45 +186,45 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.401807, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702185", + "timestamp": 1678827878.86437, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703336", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.401809, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702004" + "timestamp": 1678827878.864373, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703323" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.401812, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701988" + "timestamp": 1678827878.864375, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703183" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.401814, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626686" + "timestamp": 1678827878.864377, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627601" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.401816, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" + "timestamp": 1678827878.864379, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627633" }, { "test_type": "stable", @@ -241,17 +232,17 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.401818, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482051" + "timestamp": 1678827878.864381, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482988" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.40182, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481946" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.864384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021814" }, { "test_type": "standard", @@ -259,45 +250,36 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.401823, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021022" + "timestamp": 1678827878.864386, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021797" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.401825, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021114" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.864388, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.401827, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.401829, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "timestamp": 1678827878.86439, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.391164, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" + "timestamp": 1678827878.853724, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" } ], "configuration": { @@ -305,18 +287,20 @@ "requirements.txt" ], "extra_dependencies": [ + "qiskit", + "Cython", "coverage", - "pylint", - "qiskit" + "pylint" ], "tests_command": [ - "pytest src/tests" + "pytest" ], "styles_check_command": [ - "pylint -rn src" + "pylint -rn blueqat tests" ], "coverages_check_command": [ - "coverage run --source=\"./src/quantuminspire\" -m unittest discover -s src/tests -t src -v" + "coverage3 -m pytest", + "coverage3 report --fail-under=80" ], "language": { "name": "python", @@ -327,273 +311,272 @@ } }, "1": { - "name": "QuantumCircuits.jl", - "url": "https://github.com/Adgnitio/QuantumCircuits.jl", - "description": "QuantumCircuits is an open-source library written in Julia for working with quantum computers at the application level, especially for Quantum Finance and Quantum Machine Learning. It allows to creation and manipulation of the quantum circuits and executes them in Julia or convert them to Qiskit Python object. The library also contains the Quantum Binomial Tree implementation for derivative pricing.", - "licence": "GNU General Public License (GPL)", - "contact_info": "rafal.pracht@adgnitio.com", - "alternatives": "qiskit-finance, qiskit-machine-learning, Yao", + "name": "qiskit-classroom-converter", + "url": "https://github.com/KMU-quantum-classroom/qiskit-classroom-converter", + "description": "Convert quantum circuits, matrices, and bra-ket strings. This converter includes the following conversion functions: quantum circuit to bra-ket notation, quantum circuit to matrix, matrix to quantum circuit, bra-ket notation to matrix", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "affiliations": "_No response_", "labels": [ - "paper implementation", - "machine learning", - "finance" + "converter" ], - "created_at": 1678827878.254124, - "updated_at": 1678827878.254125, + "tier": "Community", + "website": "https://github.com/KMU-quantum-classroom", + "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Community", "skip_tests": false, - "stars": 0, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.252147, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254106, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254109, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" - } - ], - "historical_test_results": [ - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254117, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.254119, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.252147, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - } - ] + "historical_test_results": [], + "stars": 0 }, "2": { - "name": "diskit", - "url": "https://github.com/Interlin-q/diskit", - "description": "Distributed quantum computing is a concept that proposes to connect multiple quantum computers in a network to leverage a collection of more, but physically separated, qubits. In order to perform distributed quantum computing, it is necessary to add the addition of classical communication and entanglement distribution so that the control information from one qubit can be applied to another that is located on another quantum computer. For more details on distributed quantum computing, see this blog post: [Distributed Quantum Computing: A path to large scale quantum computing](https://medium.com/@stephen.diadamo/distributed-quantum-computing-1c5d38a34c50) In this project, we aim to validate distributed quantum algorithms using Qiskit. Because Qiskit does not yet come with networking features, we embed a \"virtual network topology\" into large circuits to mimic distributed quantum computing. The idea is to take a monolithic quantum circuit developed in the Qiskit language and distribute the circuit according to an artificially segmented version of a quantum processor. The inputs to the library are a quantum algorithm written monolithically (i.e., in a single circuit) and a topology parameter that represents the artificial segmentation of the single quantum processor. The algorithm takes these two inputs and remaps the Qiskit circuit to the specified segmentation, adding all necessary steps to perform an equivalent distributed quantum circuit. Our algorithm for achieving this is based on the work: [Distributed Quantum Computing and Network Control for Accelerated VQE](https://ieeexplore.ieee.org/document/9351762). The algorithm output is another Qiskit circuit with the equivalent measurement statistics but with all of the additional logic needed to perform a distributed version.", - "licence": "Apache License 2.0", - "contact_info": "stephen.diadamo@gmail.com, anuranan.fifa14@gmail.com", - "alternatives": "Interlin-q: https://github.com/Interlin-q/Interlin-q A similar library but uses QuNetSim to simulate the network communication for distributed quantum computing.", + "created_at": 1636403010.012954, + "description": "The Machine Learning package contains sample datasets and quantum ML algorithms.", "labels": [ - "plugin", - "circuit", - "converter" + "algorithms", + "machine learning" ], - "created_at": 1678827878.415704, - "updated_at": 1678827878.415704, + "licence": "Apache 2.0", + "name": "qiskit-machine-learning", + "tier": "Community", + "updated_at": 1636403010.012956, + "url": "https://github.com/qiskit-community/qiskit-machine-learning", + "website": "https://qiskit.org/ecosystem/machine-learning", + "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "historical_test_results": [], - "stars": 4, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.413669, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048174", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.415684, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048144" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.415689, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048071" - } - ] + "skip_tests": true, + "stars": 473 }, "3": { - "name": "qiskit-nature-pyscf-dft-embedding", - "url": "https://github.com/mrossinek/qiskit-nature-pyscf-dft-embedding", - "description": "This repository contains the latest prototype implementation of the Qiskit Nature + PySCF DFT Embedding. It is based on the following publication: > Max Rossmannek, Panagiotis Kl. Barkoutsos, Pauline J. Ollitrault, Ivano Tavernelli; > Quantum HF/DFT-embedding algorithms for electronic structure calculations: Scaling up to complex molecular systems. > J. Chem. Phys. 21 March 2021; 154 (11): 114105.", - "licence": "Apache License 2.0", - "contact_info": "oss@zurich.ibm.com", - "alternatives": "_No response_", - "affiliations": "_No response_", + "created_at": 1636403009.538761, + "description": "Framework that covers the whole range from high-level modeling of optimization problems, with automatic conversion of problems to different required representations, to a suite of easy-to-use quantum optimization algorithms that are ready to run on classical simulators, as well as on real quantum devices via Qiskit.", "labels": [ - "plugin", "algorithms", - "chemistry" + "optimization" ], - "created_at": 1685540348.208874, - "updated_at": 1685540348.208879, - "tests_results": [], - "styles_results": [], - "coverages_results": [], + "licence": "Apache 2.0", + "name": "qiskit-optimization", "tier": "Community", - "skip_tests": false, - "historical_test_results": [], - "stars": 3 - }, - "4": { - "name": "RasQberry", - "url": "https://github.com/JanLahmann/RasQberry", - "description": "RasQberry is a functional model of IBM Quantum System One, and can run Qiskit on the integrated Raspberry Pi", - "licence": "Apache License 2.0", - "contact_info": "Jan.lahmann@de.ibm.com", - "alternatives": "_No response_", - "labels": [ - "game" - ], - "created_at": 1674598082.072493, - "updated_at": 1674598082.072494, + "updated_at": 1636403009.538763, + "url": "https://github.com/qiskit-community/qiskit-optimization", + "website": "https://qiskit.org/ecosystem/optimization", "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Community", "skip_tests": true, - "historical_test_results": [], - "stars": 120 + "stars": 174 }, - "5": { - "name": "dsm-swap", - "url": "https://github.com/qiskit-community/dsm-swap", - "description": "A doubly stochastic matrices-based approach to optimal qubit routing", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", + "4": { + "name": "kaleidoscope", + "url": "https://github.com/QuSTaR/kaleidoscope", + "description": "Kaleidoscope", + "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", "labels": [ - "plugin", - "paper implementation", - "circuit" + "plugin" ], - "created_at": 1678827878.56605, - "updated_at": 1678827878.566051, - "styles_results": [], - "coverages_results": [], + "created_at": 1678827878.7097, + "updated_at": 1678827878.709701, "tier": "Community", "skip_tests": false, - "stars": 7, + "stars": 19, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.566001, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", + "timestamp": 1678827878.698999, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.700973, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3683924960" + }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.56399, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" + "timestamp": 1678827878.700976, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.566009, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" + "timestamp": 1678827878.700979, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false } ], "historical_test_results": [ { "test_type": "standard", - "passed": false, + "passed": true, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.709635 + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.709641 + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.709643 + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.709645, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.709647, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.70965, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.709652, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" + }, + { + "test_type": "development", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.566015, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225626" + "timestamp": 1678827878.709654, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919383", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.709656, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637966" }, { "test_type": "stable", - "passed": false, + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.709659, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638009" + }, + { + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.566017, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225632" + "timestamp": 1678827878.709661, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223971" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.709663, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223985" + }, + { + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.56602, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953428" + "timestamp": 1678827878.709665, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951084" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.566022, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953451" + "timestamp": 1678827878.709668, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951050" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.566024, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705002" + "timestamp": 1678827878.70967, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701441" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.709672, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701574", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", @@ -601,18 +584,17 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.566027, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705033" + "timestamp": 1678827878.709674, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701523" }, { - "test_type": "development", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.566029, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705078", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.709677, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626207" }, { "test_type": "stable", @@ -620,17 +602,17 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.566031, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629546" + "timestamp": 1678827878.709679, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626228" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.566033, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485251" + "timestamp": 1678827878.709681, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481624" }, { "test_type": "stable", @@ -638,17 +620,17 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.566036, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485304" + "timestamp": 1678827878.709683, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481674" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.566038, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023555" + "timestamp": 1678827878.709688, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020677" }, { "test_type": "stable", @@ -656,423 +638,568 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.56604, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023565" + "timestamp": 1678827878.70969, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020708" }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.566042, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.709692, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.566044, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" + "timestamp": 1678827878.709695, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" }, { - "test_type": "stable", - "passed": false, + "test_type": "development", + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.56399, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.698999, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } - ] + ], + "configuration": { + "dependencies_files": [ + "requirements.txt", + "requirements-dev.txt" + ], + "extra_dependencies": [ + "coverage", + "pylint" + ], + "tests_command": [ + "pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit" + ], + "styles_check_command": [ + "pylint -rn kaleidoscope" + ], + "coverages_check_command": [ + "coverage3 -m pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] + } + } + }, + "5": { + "name": "RasQberry", + "url": "https://github.com/JanLahmann/RasQberry", + "description": "RasQberry is a functional model of IBM Quantum System One, and can run Qiskit on the integrated Raspberry Pi", + "licence": "Apache License 2.0", + "contact_info": "Jan.lahmann@de.ibm.com", + "alternatives": "_No response_", + "labels": [ + "game" + ], + "created_at": 1674598082.072493, + "updated_at": 1674598082.072494, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": true, + "historical_test_results": [], + "stars": 120 }, "6": { - "name": "c3", - "url": "https://github.com/q-optimize/c3", - "description": "The C3 package is intended to close the loop between open-loop control optimization, control pulse calibration, and model-matching based on calibration data.", + "name": "qiskit-cold-atom", + "url": "https://github.com/qiskit-community/qiskit-cold-atom", + "description": "This project builds on this functionality to describe programmable quantum simulators of trapped cold atoms in a gate- and circuit-based framework.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ - "plugin" + "provider" ], - "created_at": 1678827878.240528, - "updated_at": 1678827878.240528, + "created_at": 1678827878.507531, + "updated_at": 1678827878.507532, + "styles_results": [], + "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 56, + "stars": 22, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.229887, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", + "timestamp": 1678827878.496921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.231853, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469022488" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.498896, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.231856, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" + "timestamp": 1678827878.498899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.231858, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" + "timestamp": 1678827878.498902, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" } ], - "styles_results": [ + "historical_test_results": [ { - "style_type": "pylint", - "passed": true - } - ], - "coverages_results": [ + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.507478, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" + }, { - "coverage_type": "", - "passed": true - } - ], - "historical_test_results": [ + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.507483, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.507486, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920905", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + }, { "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.507488, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639328" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.50749, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639358" + }, + { + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.240462 + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.507492, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225772" }, { - "test_type": "development", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.240467 + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.507494, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225754" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.240469 + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.507497, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953898" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.240472, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.507499, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953919" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.507501, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705694" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.240474, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.507503, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705604" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.240477, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.507505, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705583" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.240479, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.507508, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630594" }, { - "test_type": "development", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.240481, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180918979", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.50751, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630688" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.240483, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637724" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.507512, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485912" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.240486, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637748" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.507514, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485977" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.240488, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223753" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.507519, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024143" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.24049, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223761" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.507521, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024081" }, { "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.240492, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950511" - }, - { - "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.240495, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950486" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.507523, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.240497, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700830" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.507525, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" }, { - "test_type": "stable", - "passed": false, + "test_type": "development", + "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.240499, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700868" - }, + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.496921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + } + ], + "configuration": { + "dependencies_files": [ + "requirements-dev.txt" + ], + "extra_dependencies": [], + "tests_command": [ + "stestr run" + ], + "styles_check_command": [ + "pylint -rn -j 0 --rcfile=./.pylintrc qiskit_cold_atom/ test/" + ], + "coverages_check_command": [], + "language": { + "name": "python", + "versions": [ + "3.7" + ] + } + } + }, + "7": { + "name": "pyEPR", + "url": "https://github.com/zlatko-minev/pyEPR", + "description": "Qiskit Metal E&M analysis with Ansys and the energy-participation-ratio method is based on pyEPR.", + "licence": "BSD 3-Clause New or Revised license", + "contact_info": "zlatko.minev@ibm.com", + "alternatives": "", + "labels": [ + "plugin" + ], + "created_at": 1662470654.437653, + "updated_at": 1662470654.437655, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": true, + "historical_test_results": [], + "stars": 137, + "configuration": { + "dependencies_files": [ + "requirements.txt" + ], + "extra_dependencies": [ + "qiskit", + "coverage", + "pylint" + ], + "tests_command": [ + "pytest" + ], + "styles_check_command": [ + "pylint -rn pyEPR" + ], + "coverages_check_command": [ + "coverage3 -m pytest", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] + } + } + }, + "8": { + "name": "q-kernel-ops", + "url": "https://github.com/Travis-S-IBM/q-kernel-ops", + "description": "Code base on the paper Kernel Matrix Completion for Offline Quantum-Enhanced Machine Learning [2112.08449](https://arxiv.org/abs/2112.08449).", + "licence": "Apache 2.0", + "contact_info": "### Email", + "alternatives": "### Alternatives", + "labels": [ + "QAMP" + ], + "created_at": 1678827878.663275, + "updated_at": 1678827878.663276, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "stars": 3, + "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.240501, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700942", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663244, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.240503, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625453" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663249, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.240506, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625536" - }, + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.661149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" + } + ], + "historical_test_results": [ { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.240508, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481181" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.663257, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654390" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.24051, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481227" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.66326, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654418" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.240512, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020187" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.663262, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654437", + "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.240516, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020171" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663267, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", + "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.240519, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.663269, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.240521, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.229887, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.661149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" } + ] + }, + "9": { + "created_at": 1636403009.16708, + "description": "Qiskit Nature allows researchers and developers in different areas of natural sciences (including physics, chemistry, material science and biology) to model and solve domain-specific problems using quantum simulations", + "labels": [ + "algorithms", + "physics", + "chemistry" ], - "configuration": { - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint", - "black" - ], - "tests_command": [ - "pytest -v -x -m \"not slow\" test/", - "pytest -v -x -m \"slow\" test/" - ], - "styles_check_command": [ - "black --check c3/" - ], - "coverages_check_command": [ - "pytest -x -v --cov=c3 --cov-report=xml test/" - ], - "language": { - "name": "python", - "versions": [ - "3.7", - "3.8", - "3.9" - ] - } - } + "licence": "Apache 2.0", + "name": "qiskit-nature", + "tier": "Community", + "updated_at": 1636403009.167082, + "url": "https://github.com/qiskit-community/qiskit-nature", + "website": "https://qiskit.org/ecosystem/nature", + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "skip_tests": true, + "stars": 236 }, - "7": { - "name": "qtcodes", - "url": "https://github.com/yaleqc/qtcodes", - "description": "Qiskit Topological Codes", + "10": { + "name": "quantumcat", + "url": "https://github.com/artificial-brain/quantumcat", + "description": "quantumcat is a platform-independent, open-source, high-level quantum computing library, which allows the quantum community to focus on developing platform-independent quantum applications without much effort", "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", "labels": [ - "plugin" + "algorithms", + "converter" ], - "created_at": 1678827878.827901, - "updated_at": 1678827878.827902, + "created_at": 1678827878.289276, + "updated_at": 1678827878.289277, "tier": "Community", "skip_tests": false, - "stars": 82, + "stars": 20, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.819181, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", + "timestamp": 1678827878.280528, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.819186, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" - }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.819189, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" + "timestamp": 1678827878.278608, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.817194, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" + "package_version": "0.17.4", + "terra_version": "0.17.4", + "timestamp": 1678827878.280536, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" } ], "styles_results": [ @@ -1088,166 +1215,264 @@ } ], "historical_test_results": [ - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.827841 - }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.827846 + "timestamp": 1678827878.289239 }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.827849 + "package_version": "0.17.4", + "terra_version": "0.17.4", + "timestamp": 1678827878.289244, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938614" }, { - "test_type": "standard", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.827851, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.289247, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920000", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.827854, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.28925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638565" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.827856, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.289252, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224447" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.827858, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.289254, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951857" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.827861, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919232", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.289257, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703088", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.289259, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703035" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.289261, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627419" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.289264, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482715" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.289266, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021726" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.827863, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919153" + "package_version": "0.17.4", + "terra_version": "0.17.4", + "timestamp": 1678827878.289268, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" }, { - "test_type": "stable", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.827865, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637904" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.28927, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.827867, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223904" - }, + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.278608, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" + } + ], + "configuration": { + "dependencies_files": [ + "requirements.txt" + ], + "extra_dependencies": [ + "coverage", + "pylint" + ], + "tests_command": [ + "pytest" + ], + "styles_check_command": [ + "pylint -rn quantumcat tests" + ], + "coverages_check_command": [ + "coverage3 -m pytest", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] + } + } + }, + "11": { + "name": "Qiskit Nature PySCF", + "url": "https://github.com/qiskit-community/qiskit-nature-pyscf", + "description": "Qiskit Nature PySCF is a third-party integration plugin of Qiskit Nature and PySCF.", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "labels": [ + "plugin", + "chemistry" + ], + "created_at": 1678827878.723733, + "updated_at": 1678827878.723734, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "stars": 13, + "tests_results": [ { - "test_type": "standard", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.827869, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223902" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.721648, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "standard", + "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.827871, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950844" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723691, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.827874, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950941" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723694, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723697, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" + } + ], + "historical_test_results": [ { "test_type": "development", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.827876, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701356", + "timestamp": 1678827878.723702, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705234", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.827878, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701333" + "timestamp": 1678827878.723705, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705147" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.82788, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701250" + "timestamp": 1678827878.723707, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705182" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.827882, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625932" + "timestamp": 1678827878.723709, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629837" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0rc1", + "terra_version": "0.23.0rc1", + "timestamp": 1678827878.723711, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629761" }, { "test_type": "stable", @@ -1255,8 +1480,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.827885, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481542" + "timestamp": 1678827878.723714, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485540" }, { "test_type": "standard", @@ -1264,8 +1489,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.827887, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481466" + "timestamp": 1678827878.723716, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485468" }, { "test_type": "stable", @@ -1273,8 +1498,8 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.827889, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020538" + "timestamp": 1678827878.723718, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023779" }, { "test_type": "standard", @@ -1282,8 +1507,17 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.827891, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020492" + "timestamp": 1678827878.72372, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023690" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.723725, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" }, { "test_type": "stable", @@ -1291,8 +1525,8 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.827893, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" + "timestamp": 1678827878.723727, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" }, { "test_type": "development", @@ -1300,55 +1534,36 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.827895, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", + "timestamp": 1678827878.721648, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.817194, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" } + ] + }, + "12": { + "name": "purplecaffeine", + "url": "https://github.com/IceKhan13/purplecaffeine", + "description": "Project is aimed to create simple general interface to track quantum experiments, store and search them in an easy way.", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "affiliations": "QAMP", + "website": "https://icekhan13.github.io/purplecaffeine/index.html", + "labels": [ + "plugin", + "notebook" ], - "configuration": { - "dependencies_files": [], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint", - "numpy", - "matplotlib>=3.3.0", - "retworkx>=0.10.0", - "tqdm", - "pylatexenc", - "IPython", - "mypy", - "black", - "pytest" - ], - "tests_command": [ - "python -m unittest" - ], - "styles_check_command": [ - "pylint -rn qtcodes" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] - } - } + "created_at": 1688661859.080258, + "updated_at": 1688661859.080264, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "historical_test_results": [], + "stars": 6 }, - "8": { + "13": { "name": "qiskit-symb", "url": "https://github.com/SimoneGasperini/qiskit-symb", "description": "Easy-to-use Python package designed to enable symbolic quantum computation in Qiskit. It provides the basic tools for the symbolic evaluation of statevectors, density matrices, and unitary operators directly created from parametric Qiskit quantum circuits. The implementation is based on the Sympy library as backend for symbolic expressions manipulation.", @@ -1391,57 +1606,47 @@ } } }, - "9": { - "name": "qiskit-superstaq", - "url": "https://github.com/SupertechLabs/qiskit-superstaq", - "description": "This package is used to access SuperstaQ via a Web API through Qiskit. Qiskit programmers can take advantage of the applications, pulse level optimizations, and write-once-target-all features of SuperstaQ with this package.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", + "14": { + "name": "pytorch-quantum", + "url": "https://github.com/mit-han-lab/pytorch-quantum", + "description": "A PyTorch-centric hybrid classical-quantum dynamic neural networks framework.", + "licence": "Apache 2.0", "labels": [ - "plugin" + "machine learning" ], - "created_at": 1678827878.760089, - "updated_at": 1678827878.76009, + "created_at": 1678827878.611621, + "updated_at": 1678827878.611622, "tier": "Community", "skip_tests": false, + "stars": 759, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.751285, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", + "timestamp": 1678827878.602838, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.760098, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" - }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.749304, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" + "timestamp": 1678827878.602844, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.751296, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.60056, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" } ], "styles_results": [ @@ -1453,26 +1658,69 @@ "coverages_results": [ { "coverage_type": "", - "passed": true + "passed": false } ], "historical_test_results": [ + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.611555 + }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.760048 + "timestamp": 1678827878.611561 }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.20.2", "terra_version": "0.20.2", - "timestamp": 1678827878.760053, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938222" + "timestamp": 1678827878.611563 + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.611566, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.611568, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.61157, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.611572, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" }, { "test_type": "development", @@ -1480,8 +1728,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.760056, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919098", + "timestamp": 1678827878.611577, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920482", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -1490,8 +1738,26 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.760058, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637871" + "timestamp": 1678827878.611579, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638971" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.18.3", + "terra_version": "0.18.3", + "timestamp": 1678827878.611581, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319733310" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.611584, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224766" }, { "test_type": "stable", @@ -1499,8 +1765,17 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.76006, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223849" + "timestamp": 1678827878.611586, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224775" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.611588, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952548" }, { "test_type": "stable", @@ -1508,118 +1783,138 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.760063, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950701" + "timestamp": 1678827878.61159, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952575" }, { - "test_type": "standard", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.760065, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881839693" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.611593, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704035", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.760067, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700989" + "timestamp": 1678827878.611595, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703995" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.76007, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701047" + "timestamp": 1678827878.611597, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703922" }, { - "test_type": "development", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.760072, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701165", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.611599, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628138" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.760074, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625755" + "timestamp": 1678827878.611601, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628139" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.611604, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483696" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.760077, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481340" + "timestamp": 1678827878.611606, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483765" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.611608, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022339" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.760079, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020376" + "timestamp": 1678827878.61161, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022382" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.760081, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.611612, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.760083, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", + "timestamp": 1678827878.611615, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.749304, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.60056, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" } ], "configuration": { "dependencies_files": [ - "requirements.txt", - "dev-requirements.txt" + "requirements.txt" ], "extra_dependencies": [ - "qiskit" + "qiskit", + "coverage", + "pylint" ], "tests_command": [ - "pytest . --ignore-glob=*_integration_test.py --ignore=examples/" + "pytest" ], "styles_check_command": [ - "pylint --rcfile=.pylintrc examples qiskit-superstaq" + "pylint -rn torchquantum test" ], "coverages_check_command": [ - "pytest qiskit_superstaq --cov --cov-report=term-missing --cov-config=.coveragerc --cov-fail-under=100 --ignore-glob=*_integration_test.py --ignore=examples/" + "coverage3 -m pytest", + "coverage3 report --fail-under=80" ], "language": { "name": "python", @@ -1629,277 +1924,221 @@ } } }, - "10": { - "created_at": 1628883441.119202, - "description": "Qiskit Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.", - "labels": [ - "hardware" - ], + "15": { + "name": "pennylane-qiskit", + "url": "https://github.com/PennyLaneAI/pennylane-qiskit", + "description": "The PennyLane-Qiskit plugin integrates the Qiskit quantum computing framework with PennyLane's quantum machine learning capabilities", "licence": "Apache 2.0", - "name": "qiskit-metal", - "tier": "Community", - "updated_at": 1628883441.119205, - "url": "https://github.com/qiskit-community/qiskit-metal", - "tests_results": [], - "skip_tests": true, - "stars": 240 - }, - "11": { - "name": "sat-circuits-engine", - "url": "https://github.com/ohadlev77/sat-circuits-engine", - "description": "A Python-Qiskit-based package that provides capabilities of easily generating, executing and analyzing quantum circuits for satisfiability problems according to user-defined constraints. The circuits being generated by the program are based on Grover's algorithm and its amplitude-amplification generalization.", - "licence": "Apache License 2.0", - "contact_info": "ohadlev77@gmail.com", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "algorithms", - "circuit" - ], - "created_at": 1678450437.835542, - "updated_at": 1678450437.835547, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": true, - "historical_test_results": [], - "stars": 7 - }, - "12": { - "name": "qiskit-toqm", - "url": "https://github.com/qiskit-toqm/qiskit-toqm", - "description": "Qiskit transpiler routing method using the Time-Optimal Qubit Mapping (TOQM) algorithm, described in https://doi.org/10.1145/3445814.3446706", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", "labels": [ - "plugin", - "paper implementation", - "circuit" + "converter" ], - "created_at": 1678827878.737541, - "updated_at": 1678827878.737541, - "styles_results": [], - "coverages_results": [], + "created_at": 1678827878.782751, + "updated_at": 1678827878.782752, "tier": "Community", "skip_tests": false, - "stars": 4, + "stars": 127, "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.735505, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.774079, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.737494, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.774085, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.737497, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.772074, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false } ], "historical_test_results": [ { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.737502, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225279" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.782722 }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.737504, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225231" + "timestamp": 1678827878.782727, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463", + "package_commit_hash": "c60d3b8e735d54c1180fe788876f3c4dacbc3cba" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.737506, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953115" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.737509, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953228" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.737511, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881841568", - "package_commit_hash": "0344a1c94b8eb8206da18cc74d9bdc70ad203c9a" + "package_version": "0.19.1", + "terra_version": "0.19.1", + "timestamp": 1678827878.78273, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.737513, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704714" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.737515, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704666" + "package_version": "0.19.1", + "terra_version": "0.19.1", + "timestamp": 1678827878.782732, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.737518, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629059" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.73752, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628983" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.782734, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653656" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.737522, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484838" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.782736, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653687", + "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.737524, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484746" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.737526, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023237" + "package_version": "-", + "terra_version": "-", + "timestamp": 1678827878.782739, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653655" }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.737531, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023197" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.782743, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.737533, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.782745, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.737535, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.735505, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.772074, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" + } + ], + "configuration": { + "dependencies_files": [ + "requirements.txt" + ], + "extra_dependencies": [ + "coverage", + "pylint", + "qiskit" + ], + "tests_command": [ + "pytest tests --tb=short" + ], + "styles_check_command": [ + "pylint -rn pennylane_qiskit tests" + ], + "coverages_check_command": [ + "python3 -m pytest tests --tb=short --cov=pennylane_qiskit --cov-report term-missing --cov-report=html:coverage_html_report" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] } - ] + } }, - "13": { - "name": "vqls-prototype", - "url": "https://github.com/QuantumApplicationLab/vqls-prototype", - "description": "The Variational Quantum Linear Solver (VQLS) uses an optimization approach to solve linear systems of equations. The vqls-prototype allows to easily setup and deploy a VQLS instance on different backends through the use of qiskit primitives and the runtime library", + "16": { + "name": "qiskit-nature-pyscf-dft-embedding", + "url": "https://github.com/mrossinek/qiskit-nature-pyscf-dft-embedding", + "description": "This repository contains the latest prototype implementation of the Qiskit Nature + PySCF DFT Embedding. It is based on the following publication: > Max Rossmannek, Panagiotis Kl. Barkoutsos, Pauline J. Ollitrault, Ivano Tavernelli; > Quantum HF/DFT-embedding algorithms for electronic structure calculations: Scaling up to complex molecular systems. > J. Chem. Phys. 21 March 2021; 154 (11): 114105.", "licence": "Apache License 2.0", - "contact_info": "nicolas.gm.renaud@gmail.com", - "alternatives": "The prototype builds on the qiskit-textbook chapter and tutorial. The prototype allows to use the primitives and use different cost function and test circuits to optimize the parameters.", - "affiliations": "Netherlands eScience Center @ Quantum Application Lab, Amsterdam NL", + "contact_info": "oss@zurich.ibm.com", + "alternatives": "_No response_", + "affiliations": "_No response_", "labels": [ + "plugin", "algorithms", - "optimization" + "chemistry" ], - "created_at": 1683906067.55753, - "updated_at": 1683906067.557535, + "created_at": 1685540348.208874, + "updated_at": 1685540348.208879, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, "historical_test_results": [], - "stars": 1 + "stars": 3 }, - "14": { - "name": "quantumcat", - "url": "https://github.com/artificial-brain/quantumcat", - "description": "quantumcat is a platform-independent, open-source, high-level quantum computing library, which allows the quantum community to focus on developing platform-independent quantum applications without much effort", + "17": { + "name": "QPong", + "url": "https://github.com/HuangJunye/QPong", + "description": "A quantum version of the classic game Pong built with Qiskit and PyGame", "licence": "Apache 2.0", + "contact_info": "ukskosana@gmail.com", + "alternatives": "_No response_", "labels": [ - "algorithms", - "converter" + "game" ], - "created_at": 1678827878.289276, - "updated_at": 1678827878.289277, + "created_at": 1678827877.979398, + "updated_at": 1678827877.979398, + "styles_results": [], + "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 20, + "stars": 110, "tests_results": [ { "test_type": "development", @@ -1907,8 +2146,8 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.280528, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", + "timestamp": 1678827877.970614, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { @@ -1917,48 +2156,28 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.278608, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" + "timestamp": 1678827877.968673, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.17.4", - "terra_version": "0.17.4", - "timestamp": 1678827878.280536, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false + "package_version": "0.20.1", + "terra_version": "0.20.1", + "timestamp": 1678827877.970622, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" } ], "historical_test_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.289239 - }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.17.4", - "terra_version": "0.17.4", - "timestamp": 1678827878.289244, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938614" + "package_version": "0.20.1", + "terra_version": "0.20.1", + "timestamp": 1678827877.979363, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938879" }, { "test_type": "development", @@ -1966,8 +2185,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.289247, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920000", + "timestamp": 1678827877.979368, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920605", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -1976,8 +2195,8 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.28925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638565" + "timestamp": 1678827877.97937, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639040" }, { "test_type": "stable", @@ -1985,8 +2204,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.289252, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224447" + "timestamp": 1678827877.979373, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224830" }, { "test_type": "stable", @@ -1994,8 +2213,8 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.289254, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951857" + "timestamp": 1678827877.979375, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952730" }, { "test_type": "development", @@ -2003,8 +2222,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.289257, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703088", + "timestamp": 1678827877.979377, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704251", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { @@ -2013,8 +2232,8 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.289259, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703035" + "timestamp": 1678827877.97938, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704190" }, { "test_type": "stable", @@ -2022,8 +2241,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.289261, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627419" + "timestamp": 1678827877.979382, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628345" }, { "test_type": "stable", @@ -2031,8 +2250,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.289264, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482715" + "timestamp": 1678827877.979384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484060" }, { "test_type": "stable", @@ -2040,17 +2259,8 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.289266, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021726" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.17.4", - "terra_version": "0.17.4", - "timestamp": 1678827878.289268, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179" + "timestamp": 1678827877.979387, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022588" }, { "test_type": "development", @@ -2058,102 +2268,159 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.28927, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", + "timestamp": 1678827877.979389, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.1", + "terra_version": "0.20.1", + "timestamp": 1678827877.979391, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" + }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.278608, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216" + "timestamp": 1678827877.968673, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" } ], "configuration": { "dependencies_files": [ - "requirements.txt" + "requirements.txt", + "requirements-dev.txt" ], "extra_dependencies": [ - "coverage", - "pylint" + "pytest" ], "tests_command": [ "pytest" ], "styles_check_command": [ - "pylint -rn quantumcat tests" + "pylint -rn qpong tests" ], "coverages_check_command": [ - "coverage3 -m pytest", + "coverage3 run -m pytest", "coverage3 report --fail-under=80" ], "language": { "name": "python", "versions": [ - "3.6" + "3.9" ] } } }, - "15": { - "name": "QPong", - "url": "https://github.com/HuangJunye/QPong", - "description": "A quantum version of the classic game Pong built with Qiskit and PyGame", - "licence": "Apache 2.0", - "contact_info": "ukskosana@gmail.com", - "alternatives": "_No response_", + "18": { + "name": "vqls-prototype", + "url": "https://github.com/QuantumApplicationLab/vqls-prototype", + "description": "The Variational Quantum Linear Solver (VQLS) uses an optimization approach to solve linear systems of equations. The vqls-prototype allows to easily setup and deploy a VQLS instance on different backends through the use of qiskit primitives and the runtime library", + "licence": "Apache License 2.0", + "contact_info": "nicolas.gm.renaud@gmail.com", + "alternatives": "The prototype builds on the qiskit-textbook chapter and tutorial. The prototype allows to use the primitives and use different cost function and test circuits to optimize the parameters.", + "affiliations": "Netherlands eScience Center @ Quantum Application Lab, Amsterdam NL", "labels": [ - "game" + "algorithms", + "optimization" ], - "created_at": 1678827877.979398, - "updated_at": 1678827877.979398, + "created_at": 1683906067.55753, + "updated_at": 1683906067.557535, + "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 110, + "historical_test_results": [], + "stars": 1 + }, + "19": { + "name": "qiskit-superstaq", + "url": "https://github.com/SupertechLabs/qiskit-superstaq", + "description": "This package is used to access SuperstaQ via a Web API through Qiskit. Qiskit programmers can take advantage of the applications, pulse level optimizations, and write-once-target-all features of SuperstaQ with this package.", + "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", + "labels": [ + "plugin" + ], + "created_at": 1678827878.760089, + "updated_at": 1678827878.76009, + "tier": "Community", + "skip_tests": false, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827877.970614, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", + "timestamp": 1678827878.751285, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.760098, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" + }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827877.968673, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" + "timestamp": 1678827878.749304, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" }, { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.1", - "terra_version": "0.20.1", - "timestamp": 1678827877.970622, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.751296, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": true } ], "historical_test_results": [ + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.760048 + }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.20.1", - "terra_version": "0.20.1", - "timestamp": 1678827877.979363, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938879" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.760053, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938222" }, { "test_type": "development", @@ -2161,8 +2428,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827877.979368, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920605", + "timestamp": 1678827878.760056, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919098", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -2171,8 +2438,8 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827877.97937, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639040" + "timestamp": 1678827878.760058, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637871" }, { "test_type": "stable", @@ -2180,8 +2447,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827877.979373, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224830" + "timestamp": 1678827878.76006, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223849" }, { "test_type": "stable", @@ -2189,155 +2456,168 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827877.979375, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952730" + "timestamp": 1678827878.760063, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950701" }, { - "test_type": "development", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827877.979377, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704251", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.760065, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881839693" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.760067, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700989" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827877.97938, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704190" + "timestamp": 1678827878.76007, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701047" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.760072, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701165", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827877.979382, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628345" + "timestamp": 1678827878.760074, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625755" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827877.979384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484060" + "timestamp": 1678827878.760077, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481340" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827877.979387, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022588" + "timestamp": 1678827878.760079, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020376" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.760081, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827877.979389, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", + "timestamp": 1678827878.760083, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.1", - "terra_version": "0.20.1", - "timestamp": 1678827877.979391, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046210" - }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827877.968673, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214" + "timestamp": 1678827878.749304, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952" } ], "configuration": { "dependencies_files": [ "requirements.txt", - "requirements-dev.txt" + "dev-requirements.txt" ], "extra_dependencies": [ - "pytest" + "qiskit" ], "tests_command": [ - "pytest" + "pytest . --ignore-glob=*_integration_test.py --ignore=examples/" ], "styles_check_command": [ - "pylint -rn qpong tests" + "pylint --rcfile=.pylintrc examples qiskit-superstaq" ], "coverages_check_command": [ - "coverage3 run -m pytest", - "coverage3 report --fail-under=80" + "pytest qiskit_superstaq --cov --cov-report=term-missing --cov-config=.coveragerc --cov-fail-under=100 --ignore-glob=*_integration_test.py --ignore=examples/" ], "language": { "name": "python", "versions": [ - "3.9" + "3.6" ] } } }, - "16": { - "name": "qiskit-cold-atom", - "url": "https://github.com/qiskit-community/qiskit-cold-atom", - "description": "This project builds on this functionality to describe programmable quantum simulators of trapped cold atoms in a gate- and circuit-based framework.", + "20": { + "name": "mitiq", + "url": "https://github.com/unitaryfund/mitiq", + "description": "Mitiq is a Python toolkit for implementing error mitigation techniques on quantum computers", "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", "labels": [ - "provider" + "error mitigation" ], - "created_at": 1678827878.507531, - "updated_at": 1678827878.507532, - "styles_results": [], - "coverages_results": [], + "created_at": 1678827878.932437, + "updated_at": 1678827878.932437, "tier": "Community", "skip_tests": false, - "stars": 22, + "stars": 274, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.496921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", + "timestamp": 1678827878.923804, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.498896, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.92381, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881840342" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.498899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" + "timestamp": 1678827878.921839, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" }, { "test_type": "standard", @@ -2345,28 +2625,66 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.498902, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" + "timestamp": 1678827878.923815, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" + } + ], + "styles_results": [ + { + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false } ], "historical_test_results": [ { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.932371 + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.932377, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.932379, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.507478, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" + "timestamp": 1678827878.932381, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.507483, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773" + "timestamp": 1678827878.932384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" }, { "test_type": "development", @@ -2374,27 +2692,27 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.507486, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920905", + "timestamp": 1678827878.932386, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919750", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.507488, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639328" + "timestamp": 1678827878.932389, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638345" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.50749, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639358" + "timestamp": 1678827878.932391, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638304" }, { "test_type": "stable", @@ -2402,8 +2720,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.507492, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225772" + "timestamp": 1678827878.932393, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224255" }, { "test_type": "standard", @@ -2411,44 +2729,73 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.507494, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225754" + "timestamp": 1678827878.932395, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224230" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.507497, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953898" + "timestamp": 1678827878.932398, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951515" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.507499, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953919" + "timestamp": 1678827878.9324, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951564" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.932402, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076129" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.932404, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076183" }, { "test_type": "development", - "passed": true, + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.932407, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076243", + "package_commit_hash": "07e0a2fc79bada7c1fbf0594f4ad33934f70b7e2" + }, + { + "test_type": "development", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.507501, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705694" + "timestamp": 1678827878.932409, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702596", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.507503, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705604" + "timestamp": 1678827878.932411, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702443" }, { "test_type": "standard", @@ -2456,53 +2803,53 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.507505, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705583" + "timestamp": 1678827878.932413, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702348" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.507508, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630594" + "timestamp": 1678827878.932415, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626991" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.50751, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630688" + "timestamp": 1678827878.932418, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626957" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.507512, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485912" + "timestamp": 1678827878.93242, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482306" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.507514, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485977" + "timestamp": 1678827878.932422, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482198" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.507519, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024143" + "timestamp": 1678827878.932424, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021293" }, { "test_type": "standard", @@ -2510,17 +2857,8 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.507521, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024081" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.507523, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649" + "timestamp": 1678827878.932426, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021201" }, { "test_type": "standard", @@ -2528,224 +2866,205 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.507525, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578" + "timestamp": 1678827878.932429, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.496921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", + "timestamp": 1678827878.932431, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.921839, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" } ], "configuration": { "dependencies_files": [ - "requirements-dev.txt" + "requirements.txt", + "dev_requirements.txt" + ], + "extra_dependencies": [ + "coverage", + "pylint", + "qiskit" ], - "extra_dependencies": [], "tests_command": [ - "stestr run" + "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml --ignore=mitiq/interface/mitiq_pyquil" ], "styles_check_command": [ - "pylint -rn -j 0 --rcfile=./.pylintrc qiskit_cold_atom/ test/" + "pylint -rn mitiq" + ], + "coverages_check_command": [ + "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml" ], - "coverages_check_command": [], "language": { "name": "python", "versions": [ - "3.7" - ] - } - } - }, - "17": { - "name": "bosonic-qiskit", - "url": "https://github.com/C2QA/bosonic-qiskit", - "description": "NQI C2QA project to simulate hybrid boson-qubit systems within Qiskit.", - "licence": "BSD 2-Clause Simplified or FreeBSD license", - "labels": [ - "simulation", - "physics" - ], - "created_at": 1678827878.841977, - "updated_at": 1678827878.841978, - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "stars": 34, - "tests_results": [ - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.839921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.841942, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.841944, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.841947, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" - } - ], - "historical_test_results": [ - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.841952, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225482" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.841954, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953307" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.841957, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704942", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.841959, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704855" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.841961, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629269" - }, + "3.6" + ] + } + } + }, + "21": { + "name": "diskit", + "url": "https://github.com/Interlin-q/diskit", + "description": "Distributed quantum computing is a concept that proposes to connect multiple quantum computers in a network to leverage a collection of more, but physically separated, qubits. In order to perform distributed quantum computing, it is necessary to add the addition of classical communication and entanglement distribution so that the control information from one qubit can be applied to another that is located on another quantum computer. For more details on distributed quantum computing, see this blog post: [Distributed Quantum Computing: A path to large scale quantum computing](https://medium.com/@stephen.diadamo/distributed-quantum-computing-1c5d38a34c50) In this project, we aim to validate distributed quantum algorithms using Qiskit. Because Qiskit does not yet come with networking features, we embed a \"virtual network topology\" into large circuits to mimic distributed quantum computing. The idea is to take a monolithic quantum circuit developed in the Qiskit language and distribute the circuit according to an artificially segmented version of a quantum processor. The inputs to the library are a quantum algorithm written monolithically (i.e., in a single circuit) and a topology parameter that represents the artificial segmentation of the single quantum processor. The algorithm takes these two inputs and remaps the Qiskit circuit to the specified segmentation, adding all necessary steps to perform an equivalent distributed quantum circuit. Our algorithm for achieving this is based on the work: [Distributed Quantum Computing and Network Control for Accelerated VQE](https://ieeexplore.ieee.org/document/9351762). The algorithm output is another Qiskit circuit with the equivalent measurement statistics but with all of the additional logic needed to perform a distributed version.", + "licence": "Apache License 2.0", + "contact_info": "stephen.diadamo@gmail.com, anuranan.fifa14@gmail.com", + "alternatives": "Interlin-q: https://github.com/Interlin-q/Interlin-q A similar library but uses QuNetSim to simulate the network communication for distributed quantum computing.", + "labels": [ + "plugin", + "circuit", + "converter" + ], + "created_at": 1678827878.415704, + "updated_at": 1678827878.415704, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "historical_test_results": [], + "stars": 4, + "tests_results": [ { - "test_type": "stable", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.841963, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485085" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.413669, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048174", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.841967, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023417" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.415684, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048144" }, { "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.84197, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.841972, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" - }, - { - "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.839921, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.415689, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048071" } ] }, - "18": { - "name": "kaleidoscope", - "url": "https://github.com/QuSTaR/kaleidoscope", - "description": "Kaleidoscope", + "22": { + "name": "quantum-tetris", + "url": "https://github.com/olivierbrcknr/quantum-tetris", + "description": "What would happen if you combine Tetris with a Quantum computer? The winning entry of the Quantum Design Jam from IBM and Parsons in October 2021 explores just that!", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "affiliations": "_No response_", + "labels": [ + "game" + ], + "created_at": 1679712086.990215, + "updated_at": 1679712086.99022, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": true, + "historical_test_results": [], + "stars": 9 + }, + "23": { + "name": "qBraid", + "url": "https://github.com/qBraid/qBraid", + "description": "The qBraid-SDK is a Python toolkit for cross-framework abstraction, transpilation, and execution of quantum programs.", + "licence": "GNU General Public License (GPL)", + "contact_info": "ryanhill@qbraid.com", + "alternatives": "There are some alternatives to individual modules within the qBraid-SDK e.g. to execute a Qiskit circuit on an AWS device, you could use the qiskit-braket-provider. However, there aren't any other existing projects that support the same matrix of quantum program types and backends through a single, unified interface.", + "affiliations": "qBraid Co.", + "website": "https://qbraid.com", + "labels": [ + "circuit", + "openqasm", + "converter" + ], + "created_at": 1690263743.561744, + "updated_at": 1690263743.56175, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "historical_test_results": [], + "stars": 36 + }, + "24": { + "created_at": 1636403009.368607, + "description": "Qiskit Finance is an open-source framework that contains uncertainty components for stock/securities problems, Ising translators for portfolio optimizations and data providers to source real or random data to finance experiments.", + "labels": [ + "algorithms", + "finance" + ], + "licence": "Apache 2.0", + "name": "qiskit-finance", + "tier": "Community", + "updated_at": 1636403009.368609, + "url": "https://github.com/qiskit-community/qiskit-finance", + "website": "https://qiskit.org/ecosystem/finance/", + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "skip_tests": true, + "stars": 170 + }, + "25": { + "name": "c3", + "url": "https://github.com/q-optimize/c3", + "description": "The C3 package is intended to close the loop between open-loop control optimization, control pulse calibration, and model-matching based on calibration data.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ "plugin" ], - "created_at": 1678827878.7097, - "updated_at": 1678827878.709701, + "created_at": 1678827878.240528, + "updated_at": 1678827878.240528, "tier": "Community", "skip_tests": false, - "stars": 19, + "stars": 56, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.698999, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", + "timestamp": 1678827878.229887, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.700973, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3683924960" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.231853, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469022488" }, { "test_type": "stable", @@ -2753,29 +3072,29 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.700976, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" + "timestamp": 1678827878.231856, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.700979, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" + "timestamp": 1678827878.231858, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" } ], "styles_results": [ { "style_type": "pylint", - "passed": false + "passed": true } ], "coverages_results": [ { "coverage_type": "", - "passed": false + "passed": true } ], "historical_test_results": [ @@ -2785,23 +3104,23 @@ "package": "qiskit-terra", "package_version": "0.20.2", "terra_version": "0.20.2", - "timestamp": 1678827878.709635 + "timestamp": 1678827878.240462 }, { - "test_type": "stable", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.709641 + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.240467 }, { - "test_type": "development", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.709643 + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.240469 }, { "test_type": "standard", @@ -2809,8 +3128,8 @@ "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.709645, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" + "timestamp": 1678827878.240472, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" }, { "test_type": "stable", @@ -2818,109 +3137,99 @@ "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.709647, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324" + "timestamp": 1678827878.240474, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.70965, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" + "timestamp": 1678827878.240477, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.709652, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157" + "timestamp": 1678827878.240479, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.709654, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919383", + "timestamp": 1678827878.240481, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180918979", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.709656, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637966" + "timestamp": 1678827878.240483, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637724" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.709659, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638009" + "timestamp": 1678827878.240486, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637748" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.709661, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223971" + "timestamp": 1678827878.240488, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223753" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.709663, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223985" + "timestamp": 1678827878.24049, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223761" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.709665, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951084" + "terra_version": "0.22.2", + "timestamp": 1678827878.240492, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950511" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.709668, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951050" + "timestamp": 1678827878.240495, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950486" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.70967, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701441" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.709672, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701574", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "timestamp": 1678827878.240497, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700830" }, { "test_type": "stable", @@ -2928,17 +3237,27 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.709674, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701523" + "timestamp": 1678827878.240499, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700868" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.240501, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700942", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.709677, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626207" + "timestamp": 1678827878.240503, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625453" }, { "test_type": "stable", @@ -2946,17 +3265,17 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.709679, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626228" + "timestamp": 1678827878.240506, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625536" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.709681, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481624" + "timestamp": 1678827878.240508, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481181" }, { "test_type": "stable", @@ -2964,26 +3283,26 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.709683, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481674" + "timestamp": 1678827878.24051, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481227" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.709688, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020677" + "timestamp": 1678827878.240512, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020187" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.70969, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020708" + "timestamp": 1678827878.240516, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020171" }, { "test_type": "stable", @@ -2991,247 +3310,138 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.709692, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343" + "timestamp": 1678827878.240519, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.709695, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250" + "timestamp": 1678827878.240521, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.698999, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", + "timestamp": 1678827878.229887, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } ], "configuration": { "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" + "requirements.txt" ], "extra_dependencies": [ + "qiskit", "coverage", - "pylint" + "pylint", + "black" ], "tests_command": [ - "pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit" + "pytest -v -x -m \"not slow\" test/", + "pytest -v -x -m \"slow\" test/" ], "styles_check_command": [ - "pylint -rn kaleidoscope" + "black --check c3/" ], "coverages_check_command": [ - "coverage3 -m pytest -p no:warnings --pyargs kaleidoscope/test/no_qiskit", - "coverage3 report --fail-under=80" + "pytest -x -v --cov=c3 --cov-report=xml test/" ], "language": { "name": "python", "versions": [ - "3.6" + "3.7", + "3.8", + "3.9" ] } } }, - "19": { - "created_at": 1636403009.368607, - "description": "Qiskit Finance is an open-source framework that contains uncertainty components for stock/securities problems, Ising translators for portfolio optimizations and data providers to source real or random data to finance experiments.", + "26": { + "name": "QiskitOpt.jl", + "url": "https://github.com/psrenergy/QiskitOpt.jl", + "description": "QiskitOpt.jl is a Julia package that exports a JuMP wrapper for qiskit-optimization.", + "licence": "MIT license", + "contact_info": "pedroxavier@psr-inc.com, pedroripper@psr-inc.com, tiago@psr-inc.com, joaquim@psr-inc.com, dbernalneira@usra.edu", + "alternatives": "_No response_", + "affiliations": "@psrenergy and USRA", "labels": [ - "algorithms", - "finance" + "algorithms" ], - "licence": "Apache 2.0", - "name": "qiskit-finance", - "tier": "Community", - "updated_at": 1636403009.368609, - "url": "https://github.com/qiskit-community/qiskit-finance", - "website": "https://qiskit.org/ecosystem/finance/", + "created_at": 1673642669.650459, + "updated_at": 1673642669.650464, "tests_results": [], "styles_results": [], "coverages_results": [], - "skip_tests": true, - "stars": 170 - }, - "20": { - "created_at": 1636403009.16708, - "description": "Qiskit Nature allows researchers and developers in different areas of natural sciences (including physics, chemistry, material science and biology) to model and solve domain-specific problems using quantum simulations", - "labels": [ - "algorithms", - "physics", - "chemistry" - ], - "licence": "Apache 2.0", - "name": "qiskit-nature", "tier": "Community", - "updated_at": 1636403009.167082, - "url": "https://github.com/qiskit-community/qiskit-nature", - "website": "https://qiskit.org/ecosystem/nature", - "tests_results": [], - "styles_results": [], - "coverages_results": [], "skip_tests": true, - "stars": 236 + "historical_test_results": [], + "stars": 8 }, - "21": { - "name": "qiskit-rigetti", - "url": "https://github.com/rigetti/qiskit-rigetti", - "description": "Rigetti Provider for Qiskit", - "licence": "Apache 2.0", + "27": { + "name": "qiskit-toqm", + "url": "https://github.com/qiskit-toqm/qiskit-toqm", + "description": "Qiskit transpiler routing method using the Time-Optimal Qubit Mapping (TOQM) algorithm, described in https://doi.org/10.1145/3445814.3446706", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", "labels": [ - "provider" - ], - "created_at": 1678827878.136911, - "updated_at": 1678827878.136912, - "tier": "Community", - "skip_tests": false, - "stars": 7, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.128199, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.126264, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.128207, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false - } - ], - "historical_test_results": [ - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.136846 - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.136852 - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.136854 - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.136857, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.136859, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" - }, + "plugin", + "paper implementation", + "circuit" + ], + "created_at": 1678827878.737541, + "updated_at": 1678827878.737541, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "stars": 4, + "tests_results": [ { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.136861, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.735505, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.136863, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.136866, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920336", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.737494, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.136868, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638837" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.13687, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638860" - }, + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.737497, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" + } + ], + "historical_test_results": [ { "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.136872, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224732" + "timestamp": 1678827878.737502, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225279" }, { "test_type": "standard", @@ -3239,8 +3449,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.136874, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224678" + "timestamp": 1678827878.737504, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225231" }, { "test_type": "standard", @@ -3248,8 +3458,8 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.136877, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952331" + "timestamp": 1678827878.737506, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953115" }, { "test_type": "stable", @@ -3257,27 +3467,27 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.136879, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952362" + "timestamp": 1678827878.737509, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953228" }, { - "test_type": "stable", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.136881, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703796" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.737511, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881841568", + "package_commit_hash": "0344a1c94b8eb8206da18cc74d9bdc70ad203c9a" }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.136883, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703897", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.737513, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704714" }, { "test_type": "standard", @@ -3285,8 +3495,8 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.136886, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703767" + "timestamp": 1678827878.737515, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704666" }, { "test_type": "stable", @@ -3294,8 +3504,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.136888, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628005" + "timestamp": 1678827878.737518, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629059" }, { "test_type": "standard", @@ -3303,8 +3513,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.13689, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627910" + "timestamp": 1678827878.73752, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628983" }, { "test_type": "stable", @@ -3312,8 +3522,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.136893, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483522" + "timestamp": 1678827878.737522, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484838" }, { "test_type": "standard", @@ -3321,17 +3531,8 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.136895, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483440" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.136897, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022161" + "timestamp": 1678827878.737524, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484746" }, { "test_type": "stable", @@ -3339,27 +3540,17 @@ "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.136899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022210" + "timestamp": 1678827878.737526, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023237" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.136902, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.136904, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.737531, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023197" }, { "test_type": "stable", @@ -3367,131 +3558,31 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.126264, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" - } - ], - "configuration": { - "dependencies_files": [], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint", - "numpy==1.*,>=1.20.1", - "pyquil==3.*,>=3.0.0", - "black==20.*,>=20.8.0.b1", - "flake8==3.*,>=3.8.1", - "mypy==0.*,>=0.800.0", - "pip-licenses==3.*,>=3.5.1", - "pytest==6.*,>=6.2.2", - "pytest-cov==2.*,>=2.11.1", - "pytest-httpx==0.*,>=0.9.0", - "pytest-mock==3.*,>=3.6.1" - ], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn qiskit_rigetti tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] - } - } - }, - "22": { - "name": "pytket-qiskit", - "url": "https://github.com/CQCL/pytket-extensions/tree/develop/modules/pytket-qiskit", - "description": "an extension to Pytket (a python module for interfacing with CQC tket) that allows Pytket circuits to be run on IBM backends and simulators, as well as conversion to and from Qiskit representations.", - "licence": "Apache 2.0", - "labels": [ - "plugin" - ], - "created_at": 1661869851.523229, - "updated_at": 1661869851.523229, - "tier": "Community", - "skip_tests": false, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.523199, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", - "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.523204, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.522323, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false - } - ], - "historical_test_results": [ - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.52322, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" + "timestamp": 1678827878.737533, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.523222, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", - "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.737535, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031" }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1661869851.522323, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.735505, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } ] }, - "23": { + "28": { "name": "qiskit-bip-mapper", "url": "https://github.com/qiskit-community/qiskit-bip-mapper", "description": "The repository contains a standalone routing stage plugin to use the BIPMapping [routing](https://qiskit.org/documentation/apidoc/transpiler.html#routing-stage) pass. The BIP mapping pass solves the routing and [layout](https://qiskit.org/documentation/apidoc/transpiler.html#layout-stage) problems as a binary integer programming (BIP) problem. The algorithm used in this pass is described in: G. Nannicini et al. \"Optimal qubit assignment and routing via integer programming.\" [arXiv:2106.06446](https://arxiv.org/abs/2106.06446)", @@ -3513,193 +3604,70 @@ "historical_test_results": [], "stars": 4 }, - "24": { - "name": "qBraid", - "url": "https://github.com/qBraid/qBraid", - "description": "The qBraid-SDK is a Python toolkit for cross-framework abstraction, transpilation, and execution of quantum programs.", - "licence": "GNU General Public License (GPL)", - "contact_info": "ryanhill@qbraid.com", - "alternatives": "There are some alternatives to individual modules within the qBraid-SDK e.g. to execute a Qiskit circuit on an AWS device, you could use the qiskit-braket-provider. However, there aren't any other existing projects that support the same matrix of quantum program types and backends through a single, unified interface.", - "affiliations": "qBraid Co.", - "website": "https://qbraid.com", + "29": { + "name": "bosonic-qiskit", + "url": "https://github.com/C2QA/bosonic-qiskit", + "description": "NQI C2QA project to simulate hybrid boson-qubit systems within Qiskit.", + "licence": "BSD 2-Clause Simplified or FreeBSD license", "labels": [ - "circuit", - "openqasm", - "converter" + "simulation", + "physics" ], - "created_at": 1690263743.561744, - "updated_at": 1690263743.56175, - "tests_results": [], + "created_at": 1678827878.841977, + "updated_at": 1678827878.841978, "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, - "historical_test_results": [], - "stars": 36 - }, - "25": { - "name": "mitiq", - "url": "https://github.com/unitaryfund/mitiq", - "description": "Mitiq is a Python toolkit for implementing error mitigation techniques on quantum computers", - "licence": "Apache 2.0", - "labels": [ - "error mitigation" - ], - "created_at": 1678827878.932437, - "updated_at": 1678827878.932437, - "tier": "Community", - "skip_tests": false, - "stars": 274, + "stars": 34, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.923804, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", + "timestamp": 1678827878.839921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.92381, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881840342" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.921839, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" + "timestamp": 1678827878.841942, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.923815, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false - } - ], - "historical_test_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.932371 - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.932377, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.932379, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449" + "timestamp": 1678827878.841944, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.932381, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.932384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.932386, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919750", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" - }, - { - "test_type": "stable", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.932389, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638345" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.932391, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638304" - }, + "timestamp": 1678827878.841947, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" + } + ], + "historical_test_results": [ { "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.932393, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224255" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.932395, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224230" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.932398, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951515" + "timestamp": 1678827878.841952, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225482" }, { "test_type": "stable", @@ -3707,216 +3675,141 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.9324, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951564" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.932402, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076129" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.932404, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076183" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.932407, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076243", - "package_commit_hash": "07e0a2fc79bada7c1fbf0594f4ad33934f70b7e2" + "timestamp": 1678827878.841954, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953307" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.932409, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702596", + "timestamp": 1678827878.841957, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704942", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.932411, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702443" - }, - { - "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.932413, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702348" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.932415, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626991" + "timestamp": 1678827878.841959, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704855" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.932418, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626957" + "timestamp": 1678827878.841961, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629269" }, { "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.93242, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482306" - }, - { - "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.932422, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482198" + "timestamp": 1678827878.841963, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485085" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.932424, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021293" + "timestamp": 1678827878.841967, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023417" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.932426, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021201" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.84197, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047258" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.932429, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770" + "timestamp": 1678827878.841972, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.932431, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", + "timestamp": 1678827878.839921, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.921839, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812" } + ] + }, + "30": { + "created_at": 1628883441.119202, + "description": "Qiskit Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.", + "labels": [ + "hardware" ], - "configuration": { - "dependencies_files": [ - "requirements.txt", - "dev_requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint", - "qiskit" - ], - "tests_command": [ - "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml --ignore=mitiq/interface/mitiq_pyquil" - ], - "styles_check_command": [ - "pylint -rn mitiq" - ], - "coverages_check_command": [ - "pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] - } - } + "licence": "Apache 2.0", + "name": "qiskit-metal", + "tier": "Community", + "updated_at": 1628883441.119205, + "url": "https://github.com/qiskit-community/qiskit-metal", + "tests_results": [], + "skip_tests": true, + "stars": 240 }, - "26": { - "name": "pennylane-qiskit", - "url": "https://github.com/PennyLaneAI/pennylane-qiskit", - "description": "The PennyLane-Qiskit plugin integrates the Qiskit quantum computing framework with PennyLane's quantum machine learning capabilities", + "31": { + "name": "qiskit-rigetti", + "url": "https://github.com/rigetti/qiskit-rigetti", + "description": "Rigetti Provider for Qiskit", "licence": "Apache 2.0", "labels": [ - "converter" + "provider" ], - "created_at": 1678827878.782751, - "updated_at": 1678827878.782752, + "created_at": 1678827878.136911, + "updated_at": 1678827878.136912, "tier": "Community", "skip_tests": false, - "stars": 127, + "stars": 7, "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.774079, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.128199, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.774085, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.126264, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.772074, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.128207, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" } ], "styles_results": [ @@ -3933,115 +3826,266 @@ ], "historical_test_results": [ { - "test_type": "development", + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.136846 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.136852 + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.136854 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.136857, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.136859, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.136861, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1678827878.136863, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.136866, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920336", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.136868, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638837" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.13687, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638860" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.136872, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224732" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1678827878.136874, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224678" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.136877, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952331" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.136879, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952362" + }, + { + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.782722 + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.136881, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703796" }, { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.782727, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463", - "package_commit_hash": "c60d3b8e735d54c1180fe788876f3c4dacbc3cba" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.136883, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703897", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.19.1", - "terra_version": "0.19.1", - "timestamp": 1678827878.78273, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.136886, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703767" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.19.1", - "terra_version": "0.19.1", - "timestamp": 1678827878.782732, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.136888, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628005" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.782734, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653656" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.13689, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627910" }, { - "test_type": "development", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.782736, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653687", - "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.136893, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483522" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.782739, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653655" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.136895, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483440" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.782743, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045051", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.136897, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022161" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.782745, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045004" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.136899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022210" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.772074, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044960" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.136902, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863" + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.136904, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.126264, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904" } ], "configuration": { - "dependencies_files": [ - "requirements.txt" - ], + "dependencies_files": [], "extra_dependencies": [ + "qiskit", "coverage", "pylint", - "qiskit" + "numpy==1.*,>=1.20.1", + "pyquil==3.*,>=3.0.0", + "black==20.*,>=20.8.0.b1", + "flake8==3.*,>=3.8.1", + "mypy==0.*,>=0.800.0", + "pip-licenses==3.*,>=3.5.1", + "pytest==6.*,>=6.2.2", + "pytest-cov==2.*,>=2.11.1", + "pytest-httpx==0.*,>=0.9.0", + "pytest-mock==3.*,>=3.6.1" ], "tests_command": [ - "pytest tests --tb=short" + "pytest" ], "styles_check_command": [ - "pylint -rn pennylane_qiskit tests" + "pylint -rn qiskit_rigetti tests" ], "coverages_check_command": [ - "python3 -m pytest tests --tb=short --cov=pennylane_qiskit --cov-report term-missing --cov-report=html:coverage_html_report" + "coverage3 -m pytest", + "coverage3 report --fail-under=80" ], "language": { "name": "python", @@ -4051,100 +4095,71 @@ } } }, - "27": { - "name": "purplecaffeine", - "url": "https://github.com/IceKhan13/purplecaffeine", - "description": "Project is aimed to create simple general interface to track quantum experiments, store and search them in an easy way.", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "QAMP", - "website": "https://icekhan13.github.io/purplecaffeine/index.html", - "labels": [ - "plugin", - "notebook" - ], - "created_at": 1688661859.080258, - "updated_at": 1688661859.080264, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "historical_test_results": [], - "stars": 6 - }, - "28": { - "name": "QiskitOpt.jl", - "url": "https://github.com/psrenergy/QiskitOpt.jl", - "description": "QiskitOpt.jl is a Julia package that exports a JuMP wrapper for qiskit-optimization.", - "licence": "MIT license", - "contact_info": "pedroxavier@psr-inc.com, pedroripper@psr-inc.com, tiago@psr-inc.com, joaquim@psr-inc.com, dbernalneira@usra.edu", - "alternatives": "_No response_", - "affiliations": "@psrenergy and USRA", - "labels": [ - "algorithms" - ], - "created_at": 1673642669.650459, - "updated_at": 1673642669.650464, + "32": { + "name": "QiskitBot", + "url": "https://github.com/infiniteregrets/QiskitBot", + "description": "A discord bot that allows you to execute Quantum Circuits, look up the Qiskit's Documentation, and search questions on the Quantum Computing StackExchange", + "licence": "Apache 2.0", + "labels": [], + "created_at": 1641938992.363096, + "updated_at": 1641938992.363099, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": true, - "historical_test_results": [], - "stars": 8 + "stars": 23 }, - "29": { - "name": "python-open-controls", - "url": "https://github.com/qctrl/python-open-controls", - "description": "Q-CTRL Open Controls is an open-source Python package that makes it easy to create and deploy established error-robust quantum control protocols from the open literature", + "33": { + "name": "quantuminspire", + "url": "https://github.com/QuTech-Delft/quantuminspire", + "description": "platform allows to execute quantum algorithms using the cQASM language.", "licence": "Apache 2.0", "labels": [ - "hardware" + "algorithms" ], - "created_at": 1678827878.68594, - "updated_at": 1678827878.68594, + "created_at": 1678827878.401835, + "updated_at": 1678827878.401836, "tier": "Community", "skip_tests": false, - "stars": 89, + "stars": 57, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.677212, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", + "timestamp": 1678827878.393127, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.685948, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.393133, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.675149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" + "timestamp": 1678827878.393136, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.677223, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" + "timestamp": 1678827878.391164, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" } ], "styles_results": [ @@ -4156,18 +4171,33 @@ "coverages_results": [ { "coverage_type": "", - "passed": false + "passed": true } ], "historical_test_results": [ { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.401772 + }, + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.685884, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" + "timestamp": 1678827878.401778 + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.40178 }, { "test_type": "standard", @@ -4175,8 +4205,17 @@ "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.685889, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" + "timestamp": 1678827878.401782, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.401785, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414" }, { "test_type": "standard", @@ -4184,17 +4223,17 @@ "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.685892, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" + "timestamp": 1678827878.401787, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.685894, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" + "timestamp": 1678827878.401789, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223" }, { "test_type": "development", @@ -4202,27 +4241,27 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.685896, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3134449307", - "package_commit_hash": "672e95d089ba0e834915796f2b1d59527f3b4ef2" + "timestamp": 1678827878.401792, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919652", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.685899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638751" + "timestamp": 1678827878.401794, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638229" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.685901, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638746" + "timestamp": 1678827878.401796, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638217" }, { "test_type": "stable", @@ -4230,8 +4269,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.685903, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224632" + "timestamp": 1678827878.401798, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224170" }, { "test_type": "standard", @@ -4239,8 +4278,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.685905, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224622" + "timestamp": 1678827878.4018, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224153" }, { "test_type": "stable", @@ -4248,8 +4287,8 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.685907, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952236" + "timestamp": 1678827878.401803, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951415" }, { "test_type": "standard", @@ -4257,36 +4296,36 @@ "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.68591, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952183" + "timestamp": 1678827878.401805, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951365" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.685912, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703617", + "timestamp": 1678827878.401807, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702185", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.685914, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703451" + "timestamp": 1678827878.401809, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702004" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.685916, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703538" + "timestamp": 1678827878.401812, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701988" }, { "test_type": "standard", @@ -4294,8 +4333,8 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.685918, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627765" + "timestamp": 1678827878.401814, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626686" }, { "test_type": "stable", @@ -4303,165 +4342,91 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.68592, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627780" + "timestamp": 1678827878.401816, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.685923, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483343" + "timestamp": 1678827878.401818, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482051" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.685925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483261" + "timestamp": 1678827878.40182, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481946" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.685927, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021941" + "timestamp": 1678827878.401823, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021022" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.685929, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022030" + "timestamp": 1678827878.401825, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021114" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.401827, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.685932, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", + "timestamp": 1678827878.401829, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.685934, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" - }, - { - "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.675149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" - } - ], - "configuration": { - "dependencies_files": [], - "extra_dependencies": [ - "qiskit", - "coverage", - "numpy==1.*,>=1.20.0", - "toml==0.*,>=0.10.0", - "black==20.*,>=20.8.0.b1", - "isort==5.*,>=5.7.0", - "mypy==0.*,>=0.800.0", - "nbval==0.*,>=0.9.5", - "pre-commit==2.*,>=2.9.3", - "pylint==2.*,>=2.6.0", - "pylint-runner==0.*,>=0.5.4", - "pytest==5.*,>=5.0.0", - "qctrl-visualizer==2.*,>=2.12.2" - ], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn qctrlopencontrols tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] + "timestamp": 1678827878.391164, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617" } - } - }, - "30": { - "created_at": 1636403009.538761, - "description": "Framework that covers the whole range from high-level modeling of optimization problems, with automatic conversion of problems to different required representations, to a suite of easy-to-use quantum optimization algorithms that are ready to run on classical simulators, as well as on real quantum devices via Qiskit.", - "labels": [ - "algorithms", - "optimization" - ], - "licence": "Apache 2.0", - "name": "qiskit-optimization", - "tier": "Community", - "updated_at": 1636403009.538763, - "url": "https://github.com/qiskit-community/qiskit-optimization", - "website": "https://qiskit.org/ecosystem/optimization", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "stars": 174 - }, - "31": { - "name": "pyEPR", - "url": "https://github.com/zlatko-minev/pyEPR", - "description": "Qiskit Metal E&M analysis with Ansys and the energy-participation-ratio method is based on pyEPR.", - "licence": "BSD 3-Clause New or Revised license", - "contact_info": "zlatko.minev@ibm.com", - "alternatives": "", - "labels": [ - "plugin" ], - "created_at": 1662470654.437653, - "updated_at": 1662470654.437655, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": true, - "historical_test_results": [], - "stars": 137, "configuration": { "dependencies_files": [ "requirements.txt" ], "extra_dependencies": [ - "qiskit", "coverage", - "pylint" + "pylint", + "qiskit" ], "tests_command": [ - "pytest" + "pytest src/tests" ], "styles_check_command": [ - "pylint -rn pyEPR" + "pylint -rn src" ], "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" + "coverage run --source=\"./src/quantuminspire\" -m unittest discover -s src/tests -t src -v" ], "language": { "name": "python", @@ -4471,400 +4436,392 @@ } } }, - "32": { - "name": "Qiskit Nature PySCF", - "url": "https://github.com/qiskit-community/qiskit-nature-pyscf", - "description": "Qiskit Nature PySCF is a third-party integration plugin of Qiskit Nature and PySCF.", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", + "34": { + "name": "qiskit-ionq", + "url": "https://github.com/Qiskit-Partners/qiskit-ionq", + "description": "Project contains a provider that allows access to IonQ ion trap quantum systems.", + "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", "labels": [ - "plugin", - "chemistry" + "provider", + "partner" ], - "created_at": 1678827878.723733, - "updated_at": 1678827878.723734, + "created_at": 1670427446.011674, + "updated_at": 1670427446.011675, "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": false, - "stars": 13, + "stars": 30, "tests_results": [ { "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.721648, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1670427446.003062, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", + "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" }, { "test_type": "last passing version", "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723691, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.011682, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723694, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.001605, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723697, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.003071, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" } ], "historical_test_results": [ - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.723702, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705234", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" - }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.723705, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705147" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1670427446.01164, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.723707, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705182" + "package_version": "0.21.1", + "terra_version": "0.21.1", + "timestamp": 1670427446.011645, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" }, { - "test_type": "stable", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.723709, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629837" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1670427446.011647, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921277", + "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0rc1", - "terra_version": "0.23.0rc1", - "timestamp": 1678827878.723711, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629761" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1670427446.011649, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639640" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.723714, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485540" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1670427446.011652, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639611" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.723716, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485468" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1670427446.011654, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226131" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.723718, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023779" + "package_version": "0.22.0", + "terra_version": "0.22.0", + "timestamp": 1670427446.011656, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226160" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.72372, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023690" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1670427446.011659, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954337" }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723725, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797" + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1670427446.011661, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954292" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.723727, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.011665, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" }, { "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.721648, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1670427446.011667, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", + "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1670427446.001605, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" } - ] + ], + "configuration": { + "dependencies_files": [ + "requirements.txt", + "requirements-test.txt" + ], + "extra_dependencies": [], + "tests_command": [ + "python setup.py test" + ], + "styles_check_command": [ + "pylint -rn --rcfile=./.pylintrc qiskit_ionq test" + ], + "coverages_check_command": [], + "language": { + "name": "python", + "versions": [ + "3.7" + ] + } + } }, - "33": { - "name": "qiskit-classroom-converter", - "url": "https://github.com/KMU-quantum-classroom/qiskit-classroom-converter", - "description": "Convert quantum circuits, matrices, and bra-ket strings. This converter includes the following conversion functions: quantum circuit to bra-ket notation, quantum circuit to matrix, matrix to quantum circuit, bra-ket notation to matrix", + "35": { + "name": "sat-circuits-engine", + "url": "https://github.com/ohadlev77/sat-circuits-engine", + "description": "A Python-Qiskit-based package that provides capabilities of easily generating, executing and analyzing quantum circuits for satisfiability problems according to user-defined constraints. The circuits being generated by the program are based on Grover's algorithm and its amplitude-amplification generalization.", "licence": "Apache License 2.0", - "contact_info": "_No response_", + "contact_info": "ohadlev77@gmail.com", "alternatives": "_No response_", "affiliations": "_No response_", "labels": [ - "converter" + "algorithms", + "circuit" ], - "tier": "Community", - "website": "https://github.com/KMU-quantum-classroom", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [], - "stars": 0 - }, - "34": { - "name": "QiskitBot", - "url": "https://github.com/infiniteregrets/QiskitBot", - "description": "A discord bot that allows you to execute Quantum Circuits, look up the Qiskit's Documentation, and search questions on the Quantum Computing StackExchange", - "licence": "Apache 2.0", - "labels": [], - "created_at": 1641938992.363096, - "updated_at": 1641938992.363099, + "created_at": 1678450437.835542, + "updated_at": 1678450437.835547, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": true, - "stars": 23 + "historical_test_results": [], + "stars": 7 }, - "35": { - "name": "Blueqat", - "url": "https://github.com/Blueqat/Blueqat", - "description": "A quantum computing SDK", - "licence": "Apache 2.0", - "labels": [ - "convert" - ], - "created_at": 1678827878.864396, - "updated_at": 1678827878.864397, - "tier": "Community", - "skip_tests": false, - "stars": 359, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.855712, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.853724, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.855721, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" - } - ], - "styles_results": [ - { - "style_type": "pylint", - "passed": false - } - ], - "coverages_results": [ - { - "coverage_type": "", - "passed": false - } + "36": { + "name": "QuantumCircuits.jl", + "url": "https://github.com/Adgnitio/QuantumCircuits.jl", + "description": "QuantumCircuits is an open-source library written in Julia for working with quantum computers at the application level, especially for Quantum Finance and Quantum Machine Learning. It allows to creation and manipulation of the quantum circuits and executes them in Julia or convert them to Qiskit Python object. The library also contains the Quantum Binomial Tree implementation for derivative pricing.", + "licence": "GNU General Public License (GPL)", + "contact_info": "rafal.pracht@adgnitio.com", + "alternatives": "qiskit-finance, qiskit-machine-learning, Yao", + "labels": [ + "paper implementation", + "machine learning", + "finance" ], - "historical_test_results": [ + "created_at": 1678827878.254124, + "updated_at": 1678827878.254125, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "stars": 0, + "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.864336 - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.864341 + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.252147, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.864343 + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254106, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.864346, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" - }, + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254109, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" + } + ], + "historical_test_results": [ { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.864348, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254117, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046777" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.86435, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.254119, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046867" }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.1", - "terra_version": "0.21.1", - "timestamp": 1678827878.864353, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347" - }, + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1678827878.252147, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046828", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + } + ] + }, + "37": { + "name": "dsm-swap", + "url": "https://github.com/qiskit-community/dsm-swap", + "description": "A doubly stochastic matrices-based approach to optimal qubit routing", + "licence": "Apache License 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "labels": [ + "plugin", + "paper implementation", + "circuit" + ], + "created_at": 1678827878.56605, + "updated_at": 1678827878.566051, + "styles_results": [], + "coverages_results": [], + "tier": "Community", + "skip_tests": false, + "stars": 7, + "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.0", - "terra_version": "0.22.0", - "timestamp": 1678827878.864355, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920109", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.566001, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.864357, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638641" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.56399, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.864359, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638640" - }, + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.566009, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" + } + ], + "historical_test_results": [ { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.864362, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319732917" + "timestamp": 1678827878.566015, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225626" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.864364, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224539" + "timestamp": 1678827878.566017, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225632" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.864366, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952019" + "timestamp": 1678827878.56602, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953428" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.864368, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951991" + "timestamp": 1678827878.566022, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953451" }, { - "test_type": "development", + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1678827878.86437, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703336", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.566024, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705002" }, { "test_type": "stable", @@ -4872,17 +4829,18 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.864373, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703323" + "timestamp": 1678827878.566027, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705033" }, { - "test_type": "standard", + "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.864375, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703183" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.566029, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705078", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { "test_type": "stable", @@ -4890,17 +4848,17 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.864377, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627601" + "timestamp": 1678827878.566031, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629546" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.22.4", - "terra_version": "0.22.4", - "timestamp": 1678827878.864379, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627633" + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.566033, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485251" }, { "test_type": "stable", @@ -4908,26 +4866,26 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.864381, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482988" + "timestamp": 1678827878.566036, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485304" }, { - "test_type": "stable", + "test_type": "standard", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.864384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021814" + "timestamp": 1678827878.566038, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023555" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.864386, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021797" + "timestamp": 1678827878.56604, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023565" }, { "test_type": "development", @@ -4935,9 +4893,9 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.864388, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" + "timestamp": 1678827878.566042, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "standard", @@ -4945,107 +4903,91 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.86439, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386" + "timestamp": 1678827878.566044, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517" }, { "test_type": "stable", "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.853724, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462" - } - ], - "configuration": { - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "qiskit", - "Cython", - "coverage", - "pylint" - ], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn blueqat tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ], - "language": { - "name": "python", - "versions": [ - "3.6" - ] + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.56399, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648" } - } + ] }, - "36": { - "created_at": 1636403010.012954, - "description": "The Machine Learning package contains sample datasets and quantum ML algorithms.", + "38": { + "name": "spinoza", + "url": "https://github.com/smu160/spinoza", + "description": "Spinoza is a quantum state simulator (implemented in Rust) that is one of the fastest open-source simulators. Spinoza is implemented using a functional approach. Additionally, Spinoza has a `QuantumCircuit` object-oriented interface, which partially matches Qiskit's interface. Spinoza is capable of running in a myriad of computing environments (e.g., small workstations), and on various architectures. At this juncture, Spinoza only utilizes a single thread; however, it is designed to be easily extended into a parallel version, as well as a distributed version. The paper associated with Spinoza is available [here](https://arxiv.org/pdf/2303.01493.pdf).", + "licence": "Apache License 2.0", + "contact_info": "sy2685@columbia.edu", + "alternatives": "_No response_", + "affiliations": "_No response_", "labels": [ - "algorithms", - "machine learning" + "simulation" ], - "licence": "Apache 2.0", - "name": "qiskit-machine-learning", - "tier": "Community", - "updated_at": 1636403010.012956, - "url": "https://github.com/qiskit-community/qiskit-machine-learning", - "website": "https://qiskit.org/ecosystem/machine-learning", + "created_at": 1683727562.604629, + "updated_at": 1683727562.604634, "tests_results": [], "styles_results": [], "coverages_results": [], + "tier": "Community", "skip_tests": true, - "stars": 473 + "historical_test_results": [], + "stars": 4 }, - "37": { - "name": "pytorch-quantum", - "url": "https://github.com/mit-han-lab/pytorch-quantum", - "description": "A PyTorch-centric hybrid classical-quantum dynamic neural networks framework.", + "39": { + "name": "python-open-controls", + "url": "https://github.com/qctrl/python-open-controls", + "description": "Q-CTRL Open Controls is an open-source Python package that makes it easy to create and deploy established error-robust quantum control protocols from the open literature", "licence": "Apache 2.0", "labels": [ - "machine learning" + "hardware" ], - "created_at": 1678827878.611621, - "updated_at": 1678827878.611622, + "created_at": 1678827878.68594, + "updated_at": 1678827878.68594, "tier": "Community", "skip_tests": false, - "stars": 759, + "stars": 89, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.602838, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", + "timestamp": 1678827878.677212, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.685948, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" + }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.602844, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" + "timestamp": 1678827878.675149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.60056, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.677223, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" } ], "styles_results": [ @@ -5061,255 +5003,239 @@ } ], "historical_test_results": [ - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.611555 - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.0", - "terra_version": "0.21.0", - "timestamp": 1678827878.611561 - }, { "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.20.2", - "terra_version": "0.20.2", - "timestamp": 1678827878.611563 - }, - { - "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.611566, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" + "timestamp": 1678827878.685884, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.0", "terra_version": "0.21.0", - "timestamp": 1678827878.611568, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602" + "timestamp": 1678827878.685889, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.61157, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" + "timestamp": 1678827878.685892, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.611572, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448" + "timestamp": 1678827878.685894, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.611577, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920482", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" + "timestamp": 1678827878.685896, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3134449307", + "package_commit_hash": "672e95d089ba0e834915796f2b1d59527f3b4ef2" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.611579, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638971" + "timestamp": 1678827878.685899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638751" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", - "package_version": "0.18.3", - "terra_version": "0.18.3", - "timestamp": 1678827878.611581, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319733310" + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.685901, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638746" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.611584, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224766" + "timestamp": 1678827878.685903, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224632" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.611586, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224775" + "timestamp": 1678827878.685905, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224622" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.611588, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952548" + "timestamp": 1678827878.685907, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952236" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.61159, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952575" + "timestamp": 1678827878.68591, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952183" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.611593, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704035", + "timestamp": 1678827878.685912, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703617", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.611595, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703995" + "timestamp": 1678827878.685914, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703451" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.611597, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703922" + "timestamp": 1678827878.685916, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703538" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.611599, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628138" + "timestamp": 1678827878.685918, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627765" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.611601, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628139" + "timestamp": 1678827878.68592, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627780" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.611604, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483696" + "timestamp": 1678827878.685923, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483343" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.611606, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483765" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.611608, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022339" + "timestamp": 1678827878.685925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483261" }, - { - "test_type": "stable", - "passed": false, + { + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.61161, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022382" + "timestamp": 1678827878.685927, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021941" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.611612, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.685929, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022030" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.611615, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", + "timestamp": 1678827878.685932, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.60056, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046089" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.685934, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.675149, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697" } ], "configuration": { - "dependencies_files": [ - "requirements.txt" - ], + "dependencies_files": [], "extra_dependencies": [ "qiskit", "coverage", - "pylint" + "numpy==1.*,>=1.20.0", + "toml==0.*,>=0.10.0", + "black==20.*,>=20.8.0.b1", + "isort==5.*,>=5.7.0", + "mypy==0.*,>=0.800.0", + "nbval==0.*,>=0.9.5", + "pre-commit==2.*,>=2.9.3", + "pylint==2.*,>=2.6.0", + "pylint-runner==0.*,>=0.5.4", + "pytest==5.*,>=5.0.0", + "qctrl-visualizer==2.*,>=2.12.2" ], "tests_command": [ "pytest" ], "styles_check_command": [ - "pylint -rn torchquantum test" + "pylint -rn qctrlopencontrols tests" ], "coverages_check_command": [ "coverage3 -m pytest", @@ -5323,91 +5249,69 @@ } } }, - "38": { - "name": "zoose-codespace", - "url": "https://github.com/ianhellstrom/zoose-codespace", - "description": "GitHub Codespace template repository based on Zoose Quantum, a custom Docker image with everything included, so you can be up and running with any of the major quantum libraries (incl. Qiskit) with only two clicks! No installation required. Ideal for beginners or people who want to code quantum circuits on the go. Code quantum circuits straight in your browser with VSCode.", - "licence": "MIT license", - "contact_info": "ian \\[..at..\\] databaseline \\[..dot..\\] tech", - "alternatives": "qBraid: commercial hosted notebooks", - "labels": [ - "notebook" - ], - "created_at": 1670402642.907656, - "updated_at": 1670402642.907662, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": true, - "historical_test_results": [], - "stars": 0 - }, - "39": { - "name": "q-kernel-ops", - "url": "https://github.com/Travis-S-IBM/q-kernel-ops", - "description": "Code base on the paper Kernel Matrix Completion for Offline Quantum-Enhanced Machine Learning [2112.08449](https://arxiv.org/abs/2112.08449).", + "40": { + "name": "pytket-qiskit", + "url": "https://github.com/CQCL/pytket-extensions/tree/develop/modules/pytket-qiskit", + "description": "an extension to Pytket (a python module for interfacing with CQC tket) that allows Pytket circuits to be run on IBM backends and simulators, as well as conversion to and from Qiskit representations.", "licence": "Apache 2.0", - "contact_info": "### Email", - "alternatives": "### Alternatives", "labels": [ - "QAMP" + "plugin" ], - "created_at": 1678827878.663275, - "updated_at": 1678827878.663276, - "styles_results": [], - "coverages_results": [], + "created_at": 1661869851.523229, + "updated_at": 1661869851.523229, "tier": "Community", "skip_tests": false, - "stars": 3, "tests_results": [ { "test_type": "development", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663244, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.523199, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", + "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" }, { "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663249, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.523204, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.661149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.522323, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" } ], - "historical_test_results": [ + "styles_results": [ { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "-", - "terra_version": "-", - "timestamp": 1678827878.663257, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654390" - }, + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false + } + ], + "historical_test_results": [ { "test_type": "stable", "passed": false, "package": "qiskit-terra", "package_version": "-", "terra_version": "-", - "timestamp": 1678827878.66326, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654418" + "timestamp": 1661869851.52322, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" }, { "test_type": "development", @@ -5415,136 +5319,167 @@ "package": "qiskit-terra", "package_version": "-", "terra_version": "-", - "timestamp": 1678827878.663262, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654437", - "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b" - }, - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663267, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022887", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.663269, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046565" + "timestamp": 1661869851.523222, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", + "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c" }, { "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1678827878.661149, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046492" + "package_version": "-", + "terra_version": "-", + "timestamp": 1661869851.522323, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169" } ] }, - "40": { - "name": "quantum-tetris", - "url": "https://github.com/olivierbrcknr/quantum-tetris", - "description": "What would happen if you combine Tetris with a Quantum computer? The winning entry of the Quantum Design Jam from IBM and Parsons in October 2021 explores just that!", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "_No response_", + "41": { + "name": "zoose-codespace", + "url": "https://github.com/ianhellstrom/zoose-codespace", + "description": "GitHub Codespace template repository based on Zoose Quantum, a custom Docker image with everything included, so you can be up and running with any of the major quantum libraries (incl. Qiskit) with only two clicks! No installation required. Ideal for beginners or people who want to code quantum circuits on the go. Code quantum circuits straight in your browser with VSCode.", + "licence": "MIT license", + "contact_info": "ian \\[..at..\\] databaseline \\[..dot..\\] tech", + "alternatives": "qBraid: commercial hosted notebooks", "labels": [ - "game" + "notebook" ], - "created_at": 1679712086.990215, - "updated_at": 1679712086.99022, + "created_at": 1670402642.907656, + "updated_at": 1670402642.907662, "tests_results": [], "styles_results": [], "coverages_results": [], "tier": "Community", "skip_tests": true, "historical_test_results": [], - "stars": 9 + "stars": 0 }, - "41": { - "name": "qiskit-ionq", - "url": "https://github.com/Qiskit-Partners/qiskit-ionq", - "description": "Project contains a provider that allows access to IonQ ion trap quantum systems.", + "42": { + "name": "qtcodes", + "url": "https://github.com/yaleqc/qtcodes", + "description": "Qiskit Topological Codes", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ - "provider", - "partner" + "plugin" + ], + "created_at": 1678827878.827901, + "updated_at": 1678827878.827902, + "tier": "Community", + "skip_tests": false, + "stars": 82, + "tests_results": [ + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.819181, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "last passing version", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.819186, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.819189, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.817194, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" + } ], - "created_at": 1670427446.011674, - "updated_at": 1670427446.011675, - "styles_results": [], - "coverages_results": [], - "tier": "Community", - "skip_tests": false, - "stars": 30, - "tests_results": [ + "styles_results": [ { - "test_type": "development", + "style_type": "pylint", + "passed": false + } + ], + "coverages_results": [ + { + "coverage_type": "", + "passed": false + } + ], + "historical_test_results": [ + { + "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.0", - "terra_version": "0.23.0", - "timestamp": 1670427446.003062, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.827841 }, { - "test_type": "last passing version", + "test_type": "development", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.011682, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.827846 }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.001605, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" + "package_version": "0.20.2", + "terra_version": "0.20.2", + "timestamp": 1678827878.827849 }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.003071, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" - } - ], - "historical_test_results": [ + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.827851, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.0", + "terra_version": "0.21.0", + "timestamp": 1678827878.827854, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269" + }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1670427446.01164, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" + "timestamp": 1678827878.827856, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1670427446.011645, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621" + "timestamp": 1678827878.827858, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068" }, { "test_type": "development", @@ -5552,8 +5487,8 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1670427446.011647, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921277", + "timestamp": 1678827878.827861, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919232", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { @@ -5562,8 +5497,8 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1670427446.011649, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639640" + "timestamp": 1678827878.827863, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919153" }, { "test_type": "stable", @@ -5571,44 +5506,63 @@ "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1670427446.011652, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639611" + "timestamp": 1678827878.827865, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637904" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1670427446.011654, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226131" + "timestamp": 1678827878.827867, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223904" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1670427446.011656, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226160" + "timestamp": 1678827878.827869, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223902" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1670427446.011659, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954337" + "timestamp": 1678827878.827871, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950844" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1670427446.011661, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954292" + "timestamp": 1678827878.827874, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950941" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.827876, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701356", + "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.827878, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701333" }, { "test_type": "standard", @@ -5616,40 +5570,150 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1670427446.011665, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663" + "timestamp": 1678827878.82788, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701250" }, { - "test_type": "development", + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.4", + "terra_version": "0.22.4", + "timestamp": 1678827878.827882, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625932" + }, + { + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1670427446.011667, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" + "timestamp": 1678827878.827885, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481542" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.0", + "terra_version": "0.23.0", + "timestamp": 1678827878.827887, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481466" }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1670427446.001605, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.827889, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020538" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.827891, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020492" + }, + { + "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.827893, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129" + }, + { + "test_type": "development", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.827895, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.817194, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094" + } + ], + "configuration": { + "dependencies_files": [], + "extra_dependencies": [ + "qiskit", + "coverage", + "pylint", + "numpy", + "matplotlib>=3.3.0", + "retworkx>=0.10.0", + "tqdm", + "pylatexenc", + "IPython", + "mypy", + "black", + "pytest" + ], + "tests_command": [ + "python -m unittest" + ], + "styles_check_command": [ + "pylint -rn qtcodes" + ], + "coverages_check_command": [ + "coverage3 -m pytest", + "coverage3 report --fail-under=80" + ], + "language": { + "name": "python", + "versions": [ + "3.6" + ] } + } + } + }, + "Main": { + "0": { + "name": "qiskit-ibm-provider", + "url": "https://github.com/Qiskit/qiskit-ibm-provider", + "description": "Project contains a provider that allows accessing the IBM Quantum systems and simulators.", + "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", + "affiliations": "IBM", + "labels": [ + "provider", + "partner" ], + "created_at": 1654696732.591266, + "updated_at": 1654696732.591279, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Main", + "skip_tests": true, + "stars": 57, "configuration": { "dependencies_files": [ "requirements.txt", - "requirements-test.txt" + "requirements-dev.txt" ], "extra_dependencies": [], "tests_command": [ - "python setup.py test" + "python -m unittest -v" ], "styles_check_command": [ - "pylint -rn --rcfile=./.pylintrc qiskit_ionq test" + "pylint -rn --rcfile=./.pylintrc test" ], "coverages_check_command": [], "language": { @@ -5660,45 +5724,84 @@ } } }, - "42": { - "name": "spinoza", - "url": "https://github.com/smu160/spinoza", - "description": "Spinoza is a quantum state simulator (implemented in Rust) that is one of the fastest open-source simulators. Spinoza is implemented using a functional approach. Additionally, Spinoza has a `QuantumCircuit` object-oriented interface, which partially matches Qiskit's interface. Spinoza is capable of running in a myriad of computing environments (e.g., small workstations), and on various architectures. At this juncture, Spinoza only utilizes a single thread; however, it is designed to be easily extended into a parallel version, as well as a distributed version. The paper associated with Spinoza is available [here](https://arxiv.org/pdf/2303.01493.pdf).", - "licence": "Apache License 2.0", - "contact_info": "sy2685@columbia.edu", + "1": { + "name": "OpenQASM", + "url": "https://github.com/openqasm/openqasm", + "website": "https://openqasm.com/", + "description": "OpenQASM is an imperative programming language designed for near-term quantum computing algorithms and applications. Quantum programs are described using the measurement-based quantum circuit model with support for classical feed-forward flow control based on measurement outcomes.", + "licence": "Apache 2.0", + "contact_info": "_No response_", "alternatives": "_No response_", - "affiliations": "_No response_", + "affiliations": "OpenQASM specification contributors", "labels": [ - "simulation" + "openqasm" ], - "created_at": 1683727562.604629, - "updated_at": 1683727562.604634, + "created_at": 1660223774.444544, + "updated_at": 1660223774.44455, "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Community", + "tier": "Main", "skip_tests": true, "historical_test_results": [], - "stars": 4 + "stars": 1011 + }, + "2": { + "created_at": 1636403010.377695, + "description": "Aer provides high-performance quantum computing simulators with realistic noise models.", + "labels": [ + "circuit simulator" + ], + "licence": "Apache 2.0", + "name": "qiskit-aer", + "tier": "Main", + "updated_at": 1636403010.377697, + "url": "https://github.com/Qiskit/qiskit-aer", + "website": "https://qiskit.org/ecosystem/aer", + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "skip_tests": true, + "stars": 383 + }, + "3": { + "name": "qiskit-ibm-runtime", + "url": "https://github.com/qiskit/qiskit-ibm-runtime", + "description": "This module provides the interface to access Qiskit Runtime.", + "licence": "Apache 2.0", + "contact_info": "", + "alternatives": "", + "affiliations": "IBM", + "labels": [ + "provider", + "partner" + ], + "created_at": 1654696489.147673, + "updated_at": 1654696489.147699, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Main", + "skip_tests": true, + "stars": 87 } }, "Extensions": { "0": { - "name": "qiskit-alt", - "url": "https://github.com/Qiskit-Extensions/qiskit-alt", - "description": "Python package uses a backend written in Julia to implement high performance features for standard Qiskit.", + "name": "mthree", + "url": "https://github.com/Qiskit-Partners/mthree", + "description": "Matrix-free Measurement Mitigation (M3)", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", - "labels": [ - "julia" - ], - "created_at": 1678827878.588404, - "updated_at": 1678827878.588404, + "labels": [], + "created_at": 1678827878.805163, + "updated_at": 1678827878.805164, "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": false, + "stars": 25, "tests_results": [ { "test_type": "development", @@ -5706,18 +5809,27 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.579716, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", + "timestamp": 1678827878.794529, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "stable", - "passed": false, + "test_type": "last passing version", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.579721, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" + "timestamp": 1678827878.796509, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.796511, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" }, { "test_type": "standard", @@ -5725,174 +5837,192 @@ "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.577781, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" + "timestamp": 1678827878.796514, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" } ], "historical_test_results": [ { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.588354, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" + "timestamp": 1678827878.805108, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.588359, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" + "timestamp": 1678827878.805114, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.805116, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921293" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.588362, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920833", + "timestamp": 1678827878.805119, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921367", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.588364, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639231" - }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.588367, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639249" + "timestamp": 1678827878.805121, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639689" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.588369, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225683" + "timestamp": 1678827878.805123, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226321" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.588371, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225703" + "timestamp": 1678827878.805125, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226347" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.588373, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953654" + "timestamp": 1678827878.805127, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469025244" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.588375, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953616" + "timestamp": 1678827878.80513, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954458" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.588378, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881842278" + "timestamp": 1678827878.805132, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706305" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.58838, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705487", + "timestamp": 1678827878.805134, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706326", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.588382, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705437" + "timestamp": 1678827878.805136, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706246" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.588384, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630330" + "timestamp": 1678827878.805139, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631633" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.588386, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630381" + "timestamp": 1678827878.805141, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631645" }, { - "test_type": "standard", - "passed": false, + "test_type": "stable", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.588389, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485690" + "timestamp": 1678827878.805143, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486650" }, { - "test_type": "stable", - "passed": false, + "test_type": "standard", + "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.588391, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485740" + "timestamp": 1678827878.805145, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486607" }, { "test_type": "stable", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.805148, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.805152, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024915" + }, + { + "test_type": "standard", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.588393, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.805155, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" }, { - "test_type": "standard", + "test_type": "stable", "passed": false, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.588395, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023911" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.805157, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" }, { "test_type": "development", @@ -5900,18 +6030,9 @@ "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.588397, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", + "timestamp": 1678827878.794529, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.577781, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" } ], "configuration": { @@ -5921,10 +6042,10 @@ ], "extra_dependencies": [], "tests_command": [ - "pytest -p no:warnings --pyargs test" + "pytest -p no:warnings --pyargs mthree/test" ], "styles_check_command": [ - "pylint -rn src" + "pylint -rn mthree" ], "coverages_check_command": [], "language": { @@ -5936,89 +6057,71 @@ } }, "1": { - "name": "qiskit-research", - "url": "https://github.com/qiskit-community/qiskit-research", - "description": "This project contains modules for running quantum computing research experiments using Qiskit and the IBM Quantum Services, demonstrating by example best practices for running such experiments.", - "licence": "Apache 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "paper implementation" - ], - "created_at": 1662992208.202283, - "updated_at": 1662992208.20229, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Extensions", - "skip_tests": true, - "historical_test_results": [], - "stars": 56 - }, - "2": { - "name": "mthree", - "url": "https://github.com/Qiskit-Partners/mthree", - "description": "Matrix-free Measurement Mitigation (M3)", + "name": "Quantum Random Access Optimization", + "url": "https://github.com/qiskit-community/prototype-qrao", + "description": "The Quantum Random Access Optimization (QRAO) module is designed to enable users to leverage a new quantum method for combinatorial optimization problems.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", - "labels": [], - "created_at": 1678827878.805163, - "updated_at": 1678827878.805164, + "labels": [ + "optimization", + "prototype" + ], + "created_at": 1678827878.909912, + "updated_at": 1678827878.909913, "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": false, - "stars": 25, + "stars": 27, "tests_results": [ { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.794529, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", + "timestamp": 1678827878.89925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { "test_type": "last passing version", "passed": true, "package": "qiskit-terra", - "package_version": "0.23.1", - "terra_version": "0.23.1", - "timestamp": 1678827878.796509, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" + "package_version": "0.23.2", + "terra_version": "0.23.2", + "timestamp": 1678827878.901233, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.796511, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" + "timestamp": 1678827878.901236, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.796514, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" + "timestamp": 1678827878.901239, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" } ], "historical_test_results": [ { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.805108, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" + "timestamp": 1678827878.909858, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" }, { "test_type": "standard", @@ -6026,17 +6129,8 @@ "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.805114, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.21.2", - "terra_version": "0.21.2", - "timestamp": 1678827878.805116, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921293" + "timestamp": 1678827878.909863, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" }, { "test_type": "development", @@ -6044,54 +6138,72 @@ "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.805119, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921367", + "timestamp": 1678827878.909866, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921127", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.21.2", + "terra_version": "0.21.2", + "timestamp": 1678827878.909868, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639520" + }, { "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.805121, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639689" + "timestamp": 1678827878.90987, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639517" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.805123, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226321" + "timestamp": 1678827878.909872, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226033" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.805125, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226347" + "timestamp": 1678827878.909875, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225981" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.805127, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469025244" + "timestamp": 1678827878.909877, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954179" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.80513, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954458" + "timestamp": 1678827878.909879, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954205" + }, + { + "test_type": "standard", + "passed": true, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.909881, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705929" }, { "test_type": "stable", @@ -6099,8 +6211,8 @@ "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.805132, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706305" + "timestamp": 1678827878.909884, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705953" }, { "test_type": "development", @@ -6108,27 +6220,18 @@ "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.805134, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706326", + "timestamp": 1678827878.909886, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705973", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.805136, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706246" - }, { "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.805139, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631633" + "timestamp": 1678827878.909888, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631129" }, { "test_type": "stable", @@ -6136,71 +6239,71 @@ "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.805141, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631645" + "timestamp": 1678827878.90989, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631163" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.805143, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486650" + "timestamp": 1678827878.909892, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486294" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.805145, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486607" + "timestamp": 1678827878.909895, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486355" }, { - "test_type": "stable", + "test_type": "standard", "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.805148, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987" + "timestamp": 1678827878.909897, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024475" }, { - "test_type": "standard", + "test_type": "stable", "passed": true, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.805152, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024915" + "timestamp": 1678827878.909899, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024540" }, { "test_type": "standard", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.805155, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585" + "timestamp": 1678827878.909903, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" }, { "test_type": "stable", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.805157, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662" + "timestamp": 1678827878.909906, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" }, { "test_type": "development", - "passed": false, + "passed": true, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.794529, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", + "timestamp": 1678827878.89925, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" } ], @@ -6211,10 +6314,11 @@ ], "extra_dependencies": [], "tests_command": [ - "pytest -p no:warnings --pyargs mthree/test" + "pip check", + "python -m pytest" ], "styles_check_command": [ - "pylint -rn mthree" + "black ." ], "coverages_check_command": [], "language": { @@ -6225,7 +6329,60 @@ } } }, + "2": { + "created_at": 1661785302.25299, + "description": "Qiskit Experiments is an open-source project for running characterizing, calibrating, and benchmarking experiments in Qiskit.", + "labels": [ + "algorithms" + ], + "licence": "Apache 2.0", + "name": "qiskit-experiments", + "tier": "Extensions", + "updated_at": 1661785302.25299, + "url": "https://github.com/Qiskit-Extensions/qiskit-experiments", + "website": "https://qiskit.org/ecosystem/experiments/", + "tests_results": [], + "skip_tests": true, + "stars": 116 + }, "3": { + "name": "qiskit-research", + "url": "https://github.com/qiskit-community/qiskit-research", + "description": "This project contains modules for running quantum computing research experiments using Qiskit and the IBM Quantum Services, demonstrating by example best practices for running such experiments.", + "licence": "Apache 2.0", + "contact_info": "_No response_", + "alternatives": "_No response_", + "affiliations": "_No response_", + "labels": [ + "paper implementation" + ], + "created_at": 1662992208.202283, + "updated_at": 1662992208.20229, + "tests_results": [], + "styles_results": [], + "coverages_results": [], + "tier": "Extensions", + "skip_tests": true, + "historical_test_results": [], + "stars": 56 + }, + "4": { + "created_at": 1628883441.121108, + "description": "Dynamics is an open-source project for building, transforming, and solving time-dependent quantum systems in Qiskit.", + "labels": [ + "simulation" + ], + "licence": "Apache 2.0", + "name": "qiskit-dynamics", + "tier": "Extensions", + "updated_at": 1628883441.121111, + "url": "https://github.com/Qiskit-Extensions/qiskit-dynamics", + "website": "https://qiskit.org/ecosystem/dynamics/", + "tests_results": [], + "skip_tests": true, + "stars": 74 + }, + "5": { "name": "quantum-serverless", "url": "https://github.com/Qiskit-Extensions/quantum-serverless", "description": "The Quantum Serverless package aims to allow developers to easily offload computations to cloud resources, without being experts in packaging code for remote execution environments.", @@ -6274,138 +6431,99 @@ } ] }, - "4": { - "name": "Quantum kernel training", - "url": "https://github.com/qiskit-community/prototype-quantum-kernel-training", - "description": "The quantum kernel training (QKT) toolkit is designed to enable users to leverage quantum kernels for machine learning tasks; in particular, researchers who are interested in investigating quantum kernel training algorithms in their own research, as well as practitioners looking to explore and apply these algorithms to their machine learning applications.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "prototype", - "machine learning" - ], - "created_at": 1645480343.964777, - "updated_at": 1645480343.964777, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Extensions", - "skip_tests": true, - "configuration": { - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "tests_command": [ - "treon docs/ --threads 1" - ], - "styles_check_command": [ - "black --check docs" - ], - "coverages_check_command": [], - "language": { - "name": "python", - "versions": [ - "3.7" - ] - } - } - }, - "5": { - "created_at": 1661785302.25299, - "description": "Qiskit Experiments is an open-source project for running characterizing, calibrating, and benchmarking experiments in Qiskit.", - "labels": [ - "algorithms" - ], - "licence": "Apache 2.0", - "name": "qiskit-experiments", - "tier": "Extensions", - "updated_at": 1661785302.25299, - "url": "https://github.com/Qiskit-Extensions/qiskit-experiments", - "website": "https://qiskit.org/ecosystem/experiments/", - "tests_results": [], - "skip_tests": true, - "stars": 116 - }, "6": { - "name": "qiskit-qec", - "url": "https://github.com/qiskit-community/qiskit-qec", - "description": "Framework for Quantum Error Correction is an open-source framework for developers, experimentalist and theorists of Quantum Error Correction (QEC).", - "licence": "Apache 2.0", - "contact_info": "_No response_", + "name": "circuit-knitting-toolbox", + "url": "https://github.com/Qiskit-Extensions/circuit-knitting-toolbox", + "description": "Circuit Knitting is the process of decomposing a quantum circuit into smaller circuits, executing those smaller circuits on a quantum processor(s), and then knitting their results into a reconstruction of the original circuit's outcome. Circuit knitting includes techniques such as entanglement forging, circuit cutting, and classical embedding. The Circuit Knitting Toolbox (CKT) is a collection of such tools.", + "licence": "Apache License 2.0", + "contact_info": "blake.johnson@ibm.com", "alternatives": "_No response_", - "affiliations": "_No response_", "labels": [ - "algorithms", - "QEC", - "circuit" + "algorithms" ], - "created_at": 1662992390.122591, - "updated_at": 1662992390.122597, - "tests_results": [], + "created_at": 1670427445.884067, + "updated_at": 1670427445.884068, "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": true, - "historical_test_results": [] + "historical_test_results": [], + "stars": 46, + "tests_results": [ + { + "test_type": "development", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1670427445.882592, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096614", + "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" + }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1670427445.884051, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096615" + }, + { + "test_type": "standard", + "passed": false, + "package": "qiskit-terra", + "package_version": "unknown", + "terra_version": "unknown", + "timestamp": 1670427445.884055, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096587" + } + ] }, "7": { - "name": "Quantum Random Access Optimization", - "url": "https://github.com/qiskit-community/prototype-qrao", - "description": "The Quantum Random Access Optimization (QRAO) module is designed to enable users to leverage a new quantum method for combinatorial optimization problems.", + "name": "qiskit-alt", + "url": "https://github.com/Qiskit-Extensions/qiskit-alt", + "description": "Python package uses a backend written in Julia to implement high performance features for standard Qiskit.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", "labels": [ - "optimization", - "prototype" + "julia" ], - "created_at": 1678827878.909912, - "updated_at": 1678827878.909913, + "created_at": 1678827878.588404, + "updated_at": 1678827878.588404, "styles_results": [], "coverages_results": [], "tier": "Extensions", "skip_tests": false, - "stars": 27, "tests_results": [ { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.24.0", "terra_version": "0.24.0", - "timestamp": 1678827878.89925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", + "timestamp": 1678827878.579716, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, - { - "test_type": "last passing version", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.901233, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" - }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.901236, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" + "package_version": "0.23.1", + "terra_version": "0.23.1", + "timestamp": 1678827878.579721, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.901239, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" + "timestamp": 1678827878.577781, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" } ], "historical_test_results": [ @@ -6415,191 +6533,182 @@ "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.909858, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" + "timestamp": 1678827878.588354, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.1", "terra_version": "0.21.1", - "timestamp": 1678827878.909863, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584" + "timestamp": 1678827878.588359, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.909866, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921127", + "timestamp": 1678827878.588362, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920833", "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.909868, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639520" + "timestamp": 1678827878.588364, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639231" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.21.2", "terra_version": "0.21.2", - "timestamp": 1678827878.90987, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639517" + "timestamp": 1678827878.588367, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639249" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.909872, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226033" + "timestamp": 1678827878.588369, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225683" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.0", "terra_version": "0.22.0", - "timestamp": 1678827878.909875, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225981" - }, - { - "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.2", - "terra_version": "0.22.2", - "timestamp": 1678827878.909877, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954179" + "timestamp": 1678827878.588371, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225703" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.2", "terra_version": "0.22.2", - "timestamp": 1678827878.909879, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954205" + "timestamp": 1678827878.588373, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953654" }, { "test_type": "standard", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.22.3", - "terra_version": "0.22.3", - "timestamp": 1678827878.909881, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705929" + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.2", + "terra_version": "0.22.2", + "timestamp": 1678827878.588375, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953616" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.22.3", "terra_version": "0.22.3", - "timestamp": 1678827878.909884, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705953" + "timestamp": 1678827878.588378, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881842278" }, { "test_type": "development", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.909886, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705973", + "timestamp": 1678827878.58838, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705487", "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f" }, + { + "test_type": "stable", + "passed": false, + "package": "qiskit-terra", + "package_version": "0.22.3", + "terra_version": "0.22.3", + "timestamp": 1678827878.588382, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705437" + }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.909888, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631129" + "timestamp": 1678827878.588384, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630330" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.22.4", "terra_version": "0.22.4", - "timestamp": 1678827878.90989, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631163" + "timestamp": 1678827878.588386, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630381" }, { "test_type": "standard", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.909892, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486294" + "timestamp": 1678827878.588389, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485690" }, { "test_type": "stable", - "passed": true, + "passed": false, "package": "qiskit-terra", "package_version": "0.23.0", "terra_version": "0.23.0", - "timestamp": 1678827878.909895, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486355" + "timestamp": 1678827878.588391, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485740" }, { - "test_type": "standard", - "passed": true, + "test_type": "stable", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.909897, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024475" + "timestamp": 1678827878.588393, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.1", "terra_version": "0.23.1", - "timestamp": 1678827878.909899, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024540" + "timestamp": 1678827878.588395, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023911" }, { - "test_type": "standard", - "passed": true, + "test_type": "development", + "passed": false, "package": "qiskit-terra", - "package_version": "0.23.2", - "terra_version": "0.23.2", - "timestamp": 1678827878.909903, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043" + "package_version": "0.24.0", + "terra_version": "0.24.0", + "timestamp": 1678827878.588397, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", + "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" }, { - "test_type": "stable", - "passed": true, + "test_type": "standard", + "passed": false, "package": "qiskit-terra", "package_version": "0.23.2", "terra_version": "0.23.2", - "timestamp": 1678827878.909906, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127" - }, - { - "test_type": "development", - "passed": true, - "package": "qiskit-terra", - "package_version": "0.24.0", - "terra_version": "0.24.0", - "timestamp": 1678827878.89925, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd" + "timestamp": 1678827878.577781, + "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325" } ], "configuration": { @@ -6609,11 +6718,10 @@ ], "extra_dependencies": [], "tests_command": [ - "pip check", - "python -m pytest" + "pytest -p no:warnings --pyargs test" ], "styles_check_command": [ - "black ." + "pylint -rn src" ], "coverages_check_command": [], "language": { @@ -6846,92 +6954,23 @@ } }, "9": { - "created_at": 1628883441.121108, - "description": "Dynamics is an open-source project for building, transforming, and solving time-dependent quantum systems in Qiskit.", - "labels": [ - "simulation" - ], - "licence": "Apache 2.0", - "name": "qiskit-dynamics", - "tier": "Extensions", - "updated_at": 1628883441.121111, - "url": "https://github.com/Qiskit-Extensions/qiskit-dynamics", - "website": "https://qiskit.org/ecosystem/dynamics/", - "tests_results": [], - "skip_tests": true, - "stars": 74 - }, - "10": { - "name": "circuit-knitting-toolbox", - "url": "https://github.com/Qiskit-Extensions/circuit-knitting-toolbox", - "description": "Circuit Knitting is the process of decomposing a quantum circuit into smaller circuits, executing those smaller circuits on a quantum processor(s), and then knitting their results into a reconstruction of the original circuit's outcome. Circuit knitting includes techniques such as entanglement forging, circuit cutting, and classical embedding. The Circuit Knitting Toolbox (CKT) is a collection of such tools.", - "licence": "Apache License 2.0", - "contact_info": "blake.johnson@ibm.com", - "alternatives": "_No response_", - "labels": [ - "algorithms" - ], - "created_at": 1670427445.884067, - "updated_at": 1670427445.884068, - "styles_results": [], - "coverages_results": [], - "tier": "Extensions", - "skip_tests": true, - "historical_test_results": [], - "stars": 46, - "tests_results": [ - { - "test_type": "development", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1670427445.882592, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096614", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865" - }, - { - "test_type": "stable", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1670427445.884051, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096615" - }, - { - "test_type": "standard", - "passed": false, - "package": "qiskit-terra", - "package_version": "unknown", - "terra_version": "unknown", - "timestamp": 1670427445.884055, - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096587" - } - ] - } - }, - "Main": { - "0": { - "name": "qiskit-ibm-provider", - "url": "https://github.com/Qiskit/qiskit-ibm-provider", - "description": "Project contains a provider that allows accessing the IBM Quantum systems and simulators.", + "name": "Quantum kernel training", + "url": "https://github.com/qiskit-community/prototype-quantum-kernel-training", + "description": "The quantum kernel training (QKT) toolkit is designed to enable users to leverage quantum kernels for machine learning tasks; in particular, researchers who are interested in investigating quantum kernel training algorithms in their own research, as well as practitioners looking to explore and apply these algorithms to their machine learning applications.", "licence": "Apache 2.0", "contact_info": "", "alternatives": "", - "affiliations": "IBM", "labels": [ - "provider", - "partner" + "prototype", + "machine learning" ], - "created_at": 1654696732.591266, - "updated_at": 1654696732.591279, + "created_at": 1645480343.964777, + "updated_at": 1645480343.964777, "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Main", + "tier": "Extensions", "skip_tests": true, - "stars": 57, "configuration": { "dependencies_files": [ "requirements.txt", @@ -6939,10 +6978,10 @@ ], "extra_dependencies": [], "tests_command": [ - "python -m unittest -v" + "treon docs/ --threads 1" ], "styles_check_command": [ - "pylint -rn --rcfile=./.pylintrc test" + "black --check docs" ], "coverages_check_command": [], "language": { @@ -6953,66 +6992,27 @@ } } }, - "1": { - "created_at": 1636403010.377695, - "description": "Aer provides high-performance quantum computing simulators with realistic noise models.", - "labels": [ - "circuit simulator" - ], - "licence": "Apache 2.0", - "name": "qiskit-aer", - "tier": "Main", - "updated_at": 1636403010.377697, - "url": "https://github.com/Qiskit/qiskit-aer", - "website": "https://qiskit.org/ecosystem/aer", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "stars": 383 - }, - "2": { - "name": "OpenQASM", - "url": "https://github.com/openqasm/openqasm", - "website": "https://openqasm.com/", - "description": "OpenQASM is an imperative programming language designed for near-term quantum computing algorithms and applications. Quantum programs are described using the measurement-based quantum circuit model with support for classical feed-forward flow control based on measurement outcomes.", + "10": { + "name": "qiskit-qec", + "url": "https://github.com/qiskit-community/qiskit-qec", + "description": "Framework for Quantum Error Correction is an open-source framework for developers, experimentalist and theorists of Quantum Error Correction (QEC).", "licence": "Apache 2.0", "contact_info": "_No response_", "alternatives": "_No response_", - "affiliations": "OpenQASM specification contributors", - "labels": [ - "openqasm" - ], - "created_at": 1660223774.444544, - "updated_at": 1660223774.44455, - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "tier": "Main", - "skip_tests": true, - "historical_test_results": [], - "stars": 1011 - }, - "3": { - "name": "qiskit-ibm-runtime", - "url": "https://github.com/qiskit/qiskit-ibm-runtime", - "description": "This module provides the interface to access Qiskit Runtime.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "affiliations": "IBM", + "affiliations": "_No response_", "labels": [ - "provider", - "partner" + "algorithms", + "QEC", + "circuit" ], - "created_at": 1654696489.147673, - "updated_at": 1654696489.147699, + "created_at": 1662992390.122591, + "updated_at": 1662992390.122597, "tests_results": [], "styles_results": [], "coverages_results": [], - "tier": "Main", + "tier": "Extensions", "skip_tests": true, - "stars": 87 + "historical_test_results": [] } } -} \ No newline at end of file +} From 0b48bea4d993163ced8eb80216bd6417899afbd5 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 12:39:15 +0200 Subject: [PATCH 11/45] clean --- ecosystem/resources/members.json | 1 + 1 file changed, 1 insertion(+) diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 55fa41c3dc..5ab805a15a 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -7016,3 +7016,4 @@ } } } + From 88cbca87e9927af9bef19917c42dde5709a0ba63 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 12:42:50 +0200 Subject: [PATCH 12/45] clean --- ecosystem/resources/members.json | 1 - 1 file changed, 1 deletion(-) diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 5ab805a15a..55fa41c3dc 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -7016,4 +7016,3 @@ } } } - From c85953a338784ef5582d52d0a81116ef7bf374dc Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 13:44:16 +0200 Subject: [PATCH 13/45] test with GITHUB_STEP_SUMMARY --- .github/workflows/ecosystem-submission.yml | 124 +++++++++------------ 1 file changed, 50 insertions(+), 74 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index dff68d63f2..c7765c85cd 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -72,53 +72,75 @@ jobs: tier: ${{ env.tier }} logs_link: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} + - name: Add member + env: + SUBMISSION_NAME: ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} + SUBMISSION_REPO: ${{ steps.parse-issue.outputs.SUBMISSION_REPO }} + SUBMISSION_DESCRIPTION: ${{ steps.parse-issue.outputs.SUBMISSION_DESCRIPTION }} + SUBMISSION_LICENCE: ${{ steps.parse-issue.outputs.SUBMISSION_LICENCE }} + SUBMISSION_CONTACT: ${{ steps.parse-issue.outputs.SUBMISSION_CONTACT }} + SUBMISSION_ALTERNATIVES: ${{ steps.parse-issue.outputs.SUBMISSION_ALTERNATIVES }} + SUBMISSION_AFFILIATIONS: ${{ steps.parse-issue.outputs.SUBMISSION_AFFILIATIONS }} + SUBMISSION_LABELS: ${{ steps.parse-issue.outputs.SUBMISSION_LABELS }} + SUBMISSION_WEBSITE: ${{ steps.parse-issue.outputs.SUBMISSION_WEBSITE }} + run: | + python manager.py add_repo_2db --repo_name="$SUBMISSION_NAME" \ + --repo_link="$SUBMISSION_REPO" \ + --repo_description="$SUBMISSION_DESCRIPTION" \ + --repo_licence="$SUBMISSION_LICENCE" \ + --repo_contact="$SUBMISSION_CONTACT" \ + --repo_alt="$SUBMISSION_ALTERNATIVES" \ + --repo_affiliations="$SUBMISSION_AFFILIATIONS" \ + --repo_labels="$SUBMISSION_LABELS" \ + --repo_website="$SUBMISSION_WEBSITE" + # Check result, update issue and create PR - name: Check return id: check-return run: | + # STD check + echo "### Standard tests" >> $GITHUB_STEP_SUMMARY if [[ "${{ steps.standard.outputs.result }}" == *"True"* ]]; then echo "::notice title=StandardCheck::Success" echo "PASS_STD=True" >> "$GITHUB_OUTPUT" + echo ":sparkles: Successfull submission!" >> $GITHUB_STEP_SUMMARY else echo "::error title=StandardCheck::Didn't pass" echo "PASS_STD=False" >> "$GITHUB_OUTPUT" + echo ":error: The submission didn't pass the standard check." >> $GITHUB_STEP_SUMMARY + echo "Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project." >> $GITHUB_STEP_SUMMARY + echo "Read more here https://github.com/qiskit-community/ecosystem/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem." >> $GITHUB_STEP_SUMMARY fi + + # STB check + echo "### Stable tests" >> $GITHUB_STEP_SUMMARY if [[ "${{ steps.stable.outputs.result }}" == *"True"* ]]; then echo "::notice title=StableCheck::Success" echo "PASS_STB=True" >> "$GITHUB_OUTPUT" + echo ":sparkles: Tests with latest version of Qiskit release passed!" >> $GITHUB_STEP_SUMMARY else echo "::warning title=StableCheck::Didn't pass" echo "PASS_STB=False" >> "$GITHUB_OUTPUT" + echo ":warning: The submission didn't pass the stable check." >> $GITHUB_STEP_SUMMARY + echo "This means your project doesn't work with the latest version of Qiskit." >> $GITHUB_STEP_SUMMARY + echo "This is purely informational and doesn't affect your project joining the Ecosystem, but you may want to investigate the problem." >> $GITHUB_STEP_SUMMARY fi + + # DEV check + echo "### Development tests" >> $GITHUB_STEP_SUMMARY if [[ "${{ steps.dev.outputs.result }}" == *"True"* ]]; then echo "::notice title=DevCheck::Success" echo "PASS_DEV=True" >> "$GITHUB_OUTPUT" + echo ":sparkles: Tests with development version of Qiskit release passed!" >> $GITHUB_STEP_SUMMARY else echo "::warning title=DevCheck::Didn't pass" echo "PASS_DEV=False" >> "$GITHUB_OUTPUT" + echo ":warning: The submission didn't pass the development check." >> $GITHUB_STEP_SUMMARY + echo "This means your project might not work with the next version of Qiskit." >> $GITHUB_STEP_SUMMARY + echo "This is purely informational and doesn't affect your project joining Ecosystem." >> $GITHUB_STEP_SUMMARY fi - - name: Add member - env: - SUBMISSION_NAME: ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} - SUBMISSION_REPO: ${{ steps.parse-issue.outputs.SUBMISSION_REPO }} - SUBMISSION_DESCRIPTION: ${{ steps.parse-issue.outputs.SUBMISSION_DESCRIPTION }} - SUBMISSION_LICENCE: ${{ steps.parse-issue.outputs.SUBMISSION_LICENCE }} - SUBMISSION_CONTACT: ${{ steps.parse-issue.outputs.SUBMISSION_CONTACT }} - SUBMISSION_ALTERNATIVES: ${{ steps.parse-issue.outputs.SUBMISSION_ALTERNATIVES }} - SUBMISSION_AFFILIATIONS: ${{ steps.parse-issue.outputs.SUBMISSION_AFFILIATIONS }} - SUBMISSION_LABELS: ${{ steps.parse-issue.outputs.SUBMISSION_LABELS }} - SUBMISSION_WEBSITE: ${{ steps.parse-issue.outputs.SUBMISSION_WEBSITE }} - run: | - python manager.py add_repo_2db --repo_name="$SUBMISSION_NAME" \ - --repo_link="$SUBMISSION_REPO" \ - --repo_description="$SUBMISSION_DESCRIPTION" \ - --repo_licence="$SUBMISSION_LICENCE" \ - --repo_contact="$SUBMISSION_CONTACT" \ - --repo_alt="$SUBMISSION_ALTERNATIVES" \ - --repo_affiliations="$SUBMISSION_AFFILIATIONS" \ - --repo_labels="$SUBMISSION_LABELS" \ - --repo_website="$SUBMISSION_WEBSITE" + # Merge # PR stuff - name: Commit changes and create Pull Request @@ -152,26 +174,6 @@ jobs: labels: on hold # Issue stuff - ## Standard - - name: Create comment on success for standard check - if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} - uses: peter-evans/create-or-update-comment@v3 - with: - issue-number: ${{ github.event.issue.number }} - body: | - Successfull submission! :sparkles: PR #${{ steps.cpr.outputs.pull-request-number }} - - - name: Create comment on failure for standard check - if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} - uses: peter-evans/create-or-update-comment@v3 - with: - issue-number: ${{ github.event.issue.number }} - body: | - Submission PR #${{ steps.cpr.outputs.pull-request-number }} has been created with errors in tests :error: - See logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} - Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project - Read more here https://github.com/qiskit-community/ecosystem/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem - - name: Issue labeling status ready uses: actions-ecosystem/action-add-labels@v1 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} @@ -184,41 +186,15 @@ jobs: with: labels: on hold - ## Stable / Dev - - name: Create comment on success for stable check - if: ${{ steps.check-return.outputs.PASS_STB == 'True' }} - uses: peter-evans/create-or-update-comment@v3 - with: - issue-number: ${{ github.event.issue.number }} - body: | - Tests with latest version of Qiskit release passed! :sparkles: - - - name: Create comment on failure for stable check - if: ${{ steps.check-return.outputs.PASS_STB != 'True' }} - uses: peter-evans/create-or-update-comment@v3 - with: - issue-number: ${{ github.event.issue.number }} - body: | - Tests with latest version of Qiskit release failed! :warning: - This means your project doesn't work with the latest version of Qiskit. - This is purely informational and doesn't affect your project joining the Ecosystem, but you may want to investigate the problem. - See logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} - - - name: Create comment on success for dev check - if: ${{ steps.check-return.outputs.PASS_DEV == 'True' }} + - name: Create comment on issue uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} body: | - Tests with development version of Qiskit release passed! :sparkles: + - Standard check status passed : ${{ steps.check-return.outputs.PASS_STD }} - - name: Create comment on failure for dev check - if: ${{ steps.check-return.outputs.PASS_DEV != 'True' }} - uses: peter-evans/create-or-update-comment@v3 - with: - issue-number: ${{ github.event.issue.number }} - body: | - Tests with development version of Qiskit release failed! :warning: - This means your project might not work with the next version of Qiskit. - This is purely informational and doesn't affect your project joining Ecosystem. - See logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} + - Stable check status passed : ${{ steps.check-return.outputs.PASS_STB }} + - Dev check status passed : ${{ steps.check-return.outputs.PASS_DEV }} + --- + Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} + PR #${{ steps.cpr.outputs.pull-request-number }} From 58d5c57a2cb4429345e7334f545747c4a651175c Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 14:03:48 +0200 Subject: [PATCH 14/45] test with GITHUB_STEP_SUMMARY --- .github/workflows/ecosystem-submission.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index c7765c85cd..95bb184b73 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -107,7 +107,7 @@ jobs: else echo "::error title=StandardCheck::Didn't pass" echo "PASS_STD=False" >> "$GITHUB_OUTPUT" - echo ":error: The submission didn't pass the standard check." >> $GITHUB_STEP_SUMMARY + echo ":x: The submission didn't pass the standard check." >> $GITHUB_STEP_SUMMARY echo "Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project." >> $GITHUB_STEP_SUMMARY echo "Read more here https://github.com/qiskit-community/ecosystem/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem." >> $GITHUB_STEP_SUMMARY fi @@ -191,10 +191,7 @@ jobs: with: issue-number: ${{ github.event.issue.number }} body: | - - Standard check status passed : ${{ steps.check-return.outputs.PASS_STD }} - - - Stable check status passed : ${{ steps.check-return.outputs.PASS_STB }} - - Dev check status passed : ${{ steps.check-return.outputs.PASS_DEV }} + ${{ steps.check-return.GITHUB_STEP_SUMMARY }} --- Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} PR #${{ steps.cpr.outputs.pull-request-number }} From 0666906ce927336cb6cdfcd37406eb9fa2090a1a Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 14:20:02 +0200 Subject: [PATCH 15/45] test redirect summary into var --- .github/workflows/ecosystem-submission.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 95bb184b73..75298b6d56 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -141,6 +141,7 @@ jobs: fi # Merge + echo "summary_output=$(cat $GITHUB_STEP_SUMMARY)" >> "$GITHUB_OUTPUT" # PR stuff - name: Commit changes and create Pull Request @@ -191,7 +192,7 @@ jobs: with: issue-number: ${{ github.event.issue.number }} body: | - ${{ steps.check-return.GITHUB_STEP_SUMMARY }} + ${{ steps.check-return.outputs.summary_output }} --- Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} PR #${{ steps.cpr.outputs.pull-request-number }} From c947e3e19962080989032448649049158a11f91f Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 14:34:01 +0200 Subject: [PATCH 16/45] test redirect summary into var --- .github/workflows/ecosystem-submission.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 75298b6d56..bf28f159f7 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -101,11 +101,9 @@ jobs: # STD check echo "### Standard tests" >> $GITHUB_STEP_SUMMARY if [[ "${{ steps.standard.outputs.result }}" == *"True"* ]]; then - echo "::notice title=StandardCheck::Success" echo "PASS_STD=True" >> "$GITHUB_OUTPUT" echo ":sparkles: Successfull submission!" >> $GITHUB_STEP_SUMMARY else - echo "::error title=StandardCheck::Didn't pass" echo "PASS_STD=False" >> "$GITHUB_OUTPUT" echo ":x: The submission didn't pass the standard check." >> $GITHUB_STEP_SUMMARY echo "Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project." >> $GITHUB_STEP_SUMMARY @@ -115,11 +113,9 @@ jobs: # STB check echo "### Stable tests" >> $GITHUB_STEP_SUMMARY if [[ "${{ steps.stable.outputs.result }}" == *"True"* ]]; then - echo "::notice title=StableCheck::Success" echo "PASS_STB=True" >> "$GITHUB_OUTPUT" echo ":sparkles: Tests with latest version of Qiskit release passed!" >> $GITHUB_STEP_SUMMARY else - echo "::warning title=StableCheck::Didn't pass" echo "PASS_STB=False" >> "$GITHUB_OUTPUT" echo ":warning: The submission didn't pass the stable check." >> $GITHUB_STEP_SUMMARY echo "This means your project doesn't work with the latest version of Qiskit." >> $GITHUB_STEP_SUMMARY @@ -129,11 +125,9 @@ jobs: # DEV check echo "### Development tests" >> $GITHUB_STEP_SUMMARY if [[ "${{ steps.dev.outputs.result }}" == *"True"* ]]; then - echo "::notice title=DevCheck::Success" echo "PASS_DEV=True" >> "$GITHUB_OUTPUT" echo ":sparkles: Tests with development version of Qiskit release passed!" >> $GITHUB_STEP_SUMMARY else - echo "::warning title=DevCheck::Didn't pass" echo "PASS_DEV=False" >> "$GITHUB_OUTPUT" echo ":warning: The submission didn't pass the development check." >> $GITHUB_STEP_SUMMARY echo "This means your project might not work with the next version of Qiskit." >> $GITHUB_STEP_SUMMARY @@ -141,7 +135,7 @@ jobs: fi # Merge - echo "summary_output=$(cat $GITHUB_STEP_SUMMARY)" >> "$GITHUB_OUTPUT" + echo "summary_output=$(cat $GITHUB_STEP_SUMMARY)" >> "$GITHUB_ENV" # PR stuff - name: Commit changes and create Pull Request @@ -192,7 +186,7 @@ jobs: with: issue-number: ${{ github.event.issue.number }} body: | - ${{ steps.check-return.outputs.summary_output }} + ${{ env.summary_output }} --- Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} PR #${{ steps.cpr.outputs.pull-request-number }} From f79bf78955d4e6823f37b7a0cc48636276226eb5 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 14:49:28 +0200 Subject: [PATCH 17/45] test redirect summary into var --- .github/workflows/ecosystem-submission.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index bf28f159f7..2654bc432f 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -134,9 +134,6 @@ jobs: echo "This is purely informational and doesn't affect your project joining Ecosystem." >> $GITHUB_STEP_SUMMARY fi - # Merge - echo "summary_output=$(cat $GITHUB_STEP_SUMMARY)" >> "$GITHUB_ENV" - # PR stuff - name: Commit changes and create Pull Request id: cpr @@ -181,12 +178,14 @@ jobs: with: labels: on hold + - name: Footprint of step summary + run: | + echo "---" >> $GITHUB_STEP_SUMMARY + echo "Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY + echo "PR #${{ steps.cpr.outputs.pull-request-number }}" >> $GITHUB_STEP_SUMMARY + - name: Create comment on issue uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} - body: | - ${{ env.summary_output }} - --- - Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }} - PR #${{ steps.cpr.outputs.pull-request-number }} + body-path: $GITHUB_STEP_SUMMARY From 8c0274901497896f63b868491a6013e232d23009 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 14:57:09 +0200 Subject: [PATCH 18/45] test redirect summary to file --- .github/workflows/ecosystem-submission.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 2654bc432f..6d5fa07231 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -183,9 +183,11 @@ jobs: echo "---" >> $GITHUB_STEP_SUMMARY echo "Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY echo "PR #${{ steps.cpr.outputs.pull-request-number }}" >> $GITHUB_STEP_SUMMARY + # Create summary_output.md + echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md - name: Create comment on issue uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} - body-path: $GITHUB_STEP_SUMMARY + body-path: "summary_output.md" From d25262941be1ba24a35e9e12e69a7f53d9bcf0e5 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 15:06:50 +0200 Subject: [PATCH 19/45] test redirect summary to file --- .github/workflows/ecosystem-submission.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 6d5fa07231..9f7bdd9341 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -52,7 +52,7 @@ jobs: test_type: "stable" tox_env: ${{ env.tox_env }} tier: ${{ env.tier }} - logs_link: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} + logs_link: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} - name: Tests dev check id: dev uses: ./.github/actions/run-tests @@ -61,7 +61,7 @@ jobs: test_type: "development" tox_env: ${{ env.tox_env }} tier: ${{ env.tier }} - logs_link: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} + logs_link: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} - name: Tests standard repo check id: standard uses: ./.github/actions/run-tests @@ -70,7 +70,7 @@ jobs: test_type: "standard" tox_env: ${{ env.tox_env }} tier: ${{ env.tier }} - logs_link: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} + logs_link: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} - name: Add member env: @@ -107,7 +107,7 @@ jobs: echo "PASS_STD=False" >> "$GITHUB_OUTPUT" echo ":x: The submission didn't pass the standard check." >> $GITHUB_STEP_SUMMARY echo "Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project." >> $GITHUB_STEP_SUMMARY - echo "Read more here https://github.com/qiskit-community/ecosystem/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem." >> $GITHUB_STEP_SUMMARY + echo "Read more here ${{ github.server_url }}/${{ github.repository }}/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem." >> $GITHUB_STEP_SUMMARY fi # STB check @@ -134,6 +134,11 @@ jobs: echo "This is purely informational and doesn't affect your project joining Ecosystem." >> $GITHUB_STEP_SUMMARY fi + # Gen info + create summary_output.md + echo "---" >> $GITHUB_STEP_SUMMARY + echo "Logs: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY + echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md + # PR stuff - name: Commit changes and create Pull Request id: cpr @@ -178,13 +183,11 @@ jobs: with: labels: on hold - - name: Footprint of step summary + - name: Add into step summary run: | - echo "---" >> $GITHUB_STEP_SUMMARY - echo "Logs: https://github.com/qiskit-community/ecosystem/actions/runs/${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY echo "PR #${{ steps.cpr.outputs.pull-request-number }}" >> $GITHUB_STEP_SUMMARY # Create summary_output.md - echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md + echo "$(cat $GITHUB_STEP_SUMMARY)" >> summary_output.md - name: Create comment on issue uses: peter-evans/create-or-update-comment@v3 From dae6154fbe38654533f0abb2425de5892f6a8191 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 15:15:17 +0200 Subject: [PATCH 20/45] test redirect summary to file --- .github/workflows/ecosystem-submission.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 9f7bdd9341..d78aa2781c 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -148,7 +148,6 @@ jobs: title: Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. body: | Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. - Standard check passed : ${{ steps.check-return.outputs.PASS_STD }} --- Closes #${{ github.event.issue.number }} @@ -156,6 +155,12 @@ jobs: labels: submission base: main + - name: Create comment on PR + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: ${{ steps.cpr.outputs.pull-request-number }} + body-path: "summary_output.md" + - name: PR labeling status ready uses: actions-ecosystem/action-add-labels@v1 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} @@ -187,7 +192,7 @@ jobs: run: | echo "PR #${{ steps.cpr.outputs.pull-request-number }}" >> $GITHUB_STEP_SUMMARY # Create summary_output.md - echo "$(cat $GITHUB_STEP_SUMMARY)" >> summary_output.md + #echo "$(cat $GITHUB_STEP_SUMMARY)" >> summary_output.md - name: Create comment on issue uses: peter-evans/create-or-update-comment@v3 From 0e5ad1481e73e7420ecbd8e7372ea2d14d49d9aa Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 15:16:19 +0200 Subject: [PATCH 21/45] test redirect summary to file --- .github/workflows/ecosystem-submission.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index d78aa2781c..c580144785 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -193,6 +193,7 @@ jobs: echo "PR #${{ steps.cpr.outputs.pull-request-number }}" >> $GITHUB_STEP_SUMMARY # Create summary_output.md #echo "$(cat $GITHUB_STEP_SUMMARY)" >> summary_output.md + echo "$(cat summary_output.md)" - name: Create comment on issue uses: peter-evans/create-or-update-comment@v3 From 57256c51941a8e6e38c2974194ff00db21cb9f68 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 15:29:46 +0200 Subject: [PATCH 22/45] test redirect summary to file --- .github/workflows/ecosystem-submission.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index c580144785..07471f6043 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -106,7 +106,7 @@ jobs: else echo "PASS_STD=False" >> "$GITHUB_OUTPUT" echo ":x: The submission didn't pass the standard check." >> $GITHUB_STEP_SUMMARY - echo "Please follow minimal requirements for project or/and add `ecosystem.json` configuration in the root of the project." >> $GITHUB_STEP_SUMMARY + echo "Please follow minimal requirements for project or/and add ecosystem.json configuration in the root of the project." >> $GITHUB_STEP_SUMMARY echo "Read more here ${{ github.server_url }}/${{ github.repository }}/blob/main/docs/project_overview.md#adding-project-to-the-ecosystem." >> $GITHUB_STEP_SUMMARY fi @@ -135,9 +135,12 @@ jobs: fi # Gen info + create summary_output.md + echo "" >> $GITHUB_STEP_SUMMARY echo "---" >> $GITHUB_STEP_SUMMARY echo "Logs: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY - echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md + echo "$(cat $GITHUB_STEP_SUMMARY)" >> summary_output.md + echo "---" + echo "$(cat summary_output.md)" # PR stuff - name: Commit changes and create Pull Request From 506a611b882df3492fcb33e70b10495b5feb3736 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 15:45:12 +0200 Subject: [PATCH 23/45] reordering --- .github/workflows/ecosystem-submission.yml | 56 ++++++++++------------ 1 file changed, 25 insertions(+), 31 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 07471f6043..aa6e2a093b 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -94,7 +94,23 @@ jobs: --repo_labels="$SUBMISSION_LABELS" \ --repo_website="$SUBMISSION_WEBSITE" - # Check result, update issue and create PR + # Create PR + - name: Commit changes and create Pull Request + id: cpr + uses: peter-evans/create-pull-request@v5 + with: + commit-message: Submission - Add ${{ steps.parse-issue.outputs.SUBMISSION_REPO }} to list. + title: Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. + body: | + Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. + + --- + Closes #${{ github.event.issue.number }} + branch: submission-${{ github.event.issue.number }} + labels: submission + base: main + + # Check result - name: Check return id: check-return run: | @@ -134,31 +150,16 @@ jobs: echo "This is purely informational and doesn't affect your project joining Ecosystem." >> $GITHUB_STEP_SUMMARY fi - # Gen info + create summary_output.md + # Gen info echo "" >> $GITHUB_STEP_SUMMARY echo "---" >> $GITHUB_STEP_SUMMARY echo "Logs: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY - echo "$(cat $GITHUB_STEP_SUMMARY)" >> summary_output.md - echo "---" - echo "$(cat summary_output.md)" - - # PR stuff - - name: Commit changes and create Pull Request - id: cpr - uses: peter-evans/create-pull-request@v5 - with: - commit-message: Submission - Add ${{ steps.parse-issue.outputs.SUBMISSION_REPO }} to list. - title: Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. - body: | - Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list. - - --- - Closes #${{ github.event.issue.number }} - branch: submission-${{ github.event.issue.number }} - labels: submission - base: main + echo "PR #${{ steps.cpr.outputs.pull-request-number }}" >> $GITHUB_STEP_SUMMARY + # Create summary_output.md + echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md - - name: Create comment on PR + # PR labels and comment + - name: PR create comment uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ steps.cpr.outputs.pull-request-number }} @@ -178,7 +179,7 @@ jobs: number: ${{ steps.cpr.outputs.pull-request-number }} labels: on hold - # Issue stuff + # Issue labels and comment - name: Issue labeling status ready uses: actions-ecosystem/action-add-labels@v1 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} @@ -191,14 +192,7 @@ jobs: with: labels: on hold - - name: Add into step summary - run: | - echo "PR #${{ steps.cpr.outputs.pull-request-number }}" >> $GITHUB_STEP_SUMMARY - # Create summary_output.md - #echo "$(cat $GITHUB_STEP_SUMMARY)" >> summary_output.md - echo "$(cat summary_output.md)" - - - name: Create comment on issue + - name: Issue create comment uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} From b7dc78ad44a3ab60a964695340d03479c3897038 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 16:08:05 +0200 Subject: [PATCH 24/45] remove labels option --- .github/workflows/ecosystem-submission.yml | 23 +++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index aa6e2a093b..9c96ccde16 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -5,7 +5,7 @@ name: Ecosystem | Submission check # - parse issue # - run lint, coverage, tests # - create pr -# - comment result +# - comment result and add labels on: issues: @@ -159,18 +159,17 @@ jobs: echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md # PR labels and comment - - name: PR create comment - uses: peter-evans/create-or-update-comment@v3 - with: - issue-number: ${{ steps.cpr.outputs.pull-request-number }} - body-path: "summary_output.md" - - name: PR labeling status ready uses: actions-ecosystem/action-add-labels@v1 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: number: ${{ steps.cpr.outputs.pull-request-number }} labels: ready + - uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} + with: + number: ${{ steps.cpr.outputs.pull-request-number }} + labels: on hold - name: PR labeling status on hold uses: actions-ecosystem/action-add-labels@v1 @@ -179,12 +178,22 @@ jobs: number: ${{ steps.cpr.outputs.pull-request-number }} labels: on hold + - name: PR create comment + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: ${{ steps.cpr.outputs.pull-request-number }} + body-path: "summary_output.md" + # Issue labels and comment - name: Issue labeling status ready uses: actions-ecosystem/action-add-labels@v1 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: labels: ready + - uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} + with: + labels: on hold - name: Issue labeling status on hold uses: actions-ecosystem/action-add-labels@v1 From 3675d0caf3532f9c2cf6126f73a458fa77ba20fa Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 16:23:08 +0200 Subject: [PATCH 25/45] use build script for labels --- .github/workflows/ecosystem-submission.yml | 64 +++++++++++++++++----- 1 file changed, 49 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 9c96ccde16..58ab2568b3 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -160,23 +160,38 @@ jobs: # PR labels and comment - name: PR labeling status ready - uses: actions-ecosystem/action-add-labels@v1 + uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: - number: ${{ steps.cpr.outputs.pull-request-number }} - labels: ready - - uses: actions-ecosystem/action-remove-labels@v1 + script: | + github.rest.issues.addLabels({ + issue_number: steps.cpr.outputs.pull-request-number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: ["ready"] + }) + - uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: - number: ${{ steps.cpr.outputs.pull-request-number }} - labels: on hold + script: | + github.rest.issues.removeLabel({ + issue_number: steps.cpr.outputs.pull-request-number, + owner: context.repo.owner, + repo: context.repo.repo, + name: ["on hold"] + }) - name: PR labeling status on hold - uses: actions-ecosystem/action-add-labels@v1 + uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: - number: ${{ steps.cpr.outputs.pull-request-number }} - labels: on hold + script: | + github.rest.issues.addLabels({ + issue_number: steps.cpr.outputs.pull-request-number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: ["on hold"] + }) - name: PR create comment uses: peter-evans/create-or-update-comment@v3 @@ -186,20 +201,39 @@ jobs: # Issue labels and comment - name: Issue labeling status ready - uses: actions-ecosystem/action-add-labels@v1 + uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: - labels: ready - - uses: actions-ecosystem/action-remove-labels@v1 + script: | + github.rest.issues.addLabels({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: ["ready"] + }) + - uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: - labels: on hold + script: | + github.rest.issues.removeLabel({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + name: ["on hold"] + }) + - name: Issue labeling status on hold - uses: actions-ecosystem/action-add-labels@v1 + uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: - labels: on hold + script: | + github.rest.issues.addLabels({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: ["on hold"] + }) - name: Issue create comment uses: peter-evans/create-or-update-comment@v3 From a57c494658f8c193df14cc68ccd0a79a24dc6d30 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 16:26:34 +0200 Subject: [PATCH 26/45] use build script for labels --- .github/workflows/ecosystem-submission.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 58ab2568b3..ed61140b4f 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -169,7 +169,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, labels: ["ready"] - }) + }) - uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: @@ -191,7 +191,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, labels: ["on hold"] - }) + }) - name: PR create comment uses: peter-evans/create-or-update-comment@v3 @@ -210,7 +210,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, labels: ["ready"] - }) + }) - uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: @@ -222,7 +222,6 @@ jobs: name: ["on hold"] }) - - name: Issue labeling status on hold uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} From 237d3b425904227fea7b0fe88399de98459b846b Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 16:27:10 +0200 Subject: [PATCH 27/45] use build script for labels --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index ed61140b4f..bc3323534b 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -232,7 +232,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, labels: ["on hold"] - }) + }) - name: Issue create comment uses: peter-evans/create-or-update-comment@v3 From 91e10f4430054c28d4ea1c937184a788f2e3d14e Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 16:39:02 +0200 Subject: [PATCH 28/45] use build script for labels --- .github/workflows/ecosystem-submission.yml | 34 ++++++++++++++++++---- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index bc3323534b..19a83a1ab8 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -165,17 +165,18 @@ jobs: with: script: | github.rest.issues.addLabels({ - issue_number: steps.cpr.outputs.pull-request-number, + issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, repo: context.repo.repo, labels: ["ready"] }) - - uses: actions/github-script@v6 + - name: PR labeling status ready remove on hold + uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: script: | github.rest.issues.removeLabel({ - issue_number: steps.cpr.outputs.pull-request-number, + issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, repo: context.repo.repo, name: ["on hold"] @@ -187,11 +188,22 @@ jobs: with: script: | github.rest.issues.addLabels({ - issue_number: steps.cpr.outputs.pull-request-number, + issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, repo: context.repo.repo, labels: ["on hold"] }) + - name: PR labeling status on hold remove ready + uses: actions/github-script@v6 + if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} + with: + script: | + github.rest.issues.removeLabel({ + issue_number: ${{ steps.cpr.outputs.pull-request-number }}, + owner: context.repo.owner, + repo: context.repo.repo, + name: ["ready"] + }) - name: PR create comment uses: peter-evans/create-or-update-comment@v3 @@ -211,7 +223,8 @@ jobs: repo: context.repo.repo, labels: ["ready"] }) - - uses: actions/github-script@v6 + - name: PR labeling status ready remove on hold + uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: script: | @@ -233,6 +246,17 @@ jobs: repo: context.repo.repo, labels: ["on hold"] }) + - name: PR labeling status on hold remove ready + uses: actions/github-script@v6 + if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} + with: + script: | + github.rest.issues.removeLabel({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + name: ["ready"] + }) - name: Issue create comment uses: peter-evans/create-or-update-comment@v3 From e563a4c59c66647568548cfe8da48cfff28834d7 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 16:59:17 +0200 Subject: [PATCH 29/45] final test --- .github/workflows/ecosystem-submission.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 19a83a1ab8..e1eed380cd 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -25,9 +25,6 @@ jobs: steps: # setup deps - uses: actions/checkout@v3 - - uses: actions-ecosystem/action-add-labels@v1 - with: - labels: submission - name: Set up Python ${{ env.python-version }} uses: actions/setup-python@v4 with: @@ -171,6 +168,7 @@ jobs: labels: ["ready"] }) - name: PR labeling status ready remove on hold + continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: @@ -194,6 +192,7 @@ jobs: labels: ["on hold"] }) - name: PR labeling status on hold remove ready + continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: @@ -221,9 +220,10 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ["ready"] + labels: ["ready", "submission"] }) - name: PR labeling status ready remove on hold + continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: @@ -244,9 +244,10 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ["on hold"] + labels: ["on hold", "submission"] }) - name: PR labeling status on hold remove ready + continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: From 06a3a803e724d92a45ebeca6f18980e7b0e08306 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 17:03:22 +0200 Subject: [PATCH 30/45] add label from issue template --- .github/ISSUE_TEMPLATE/submission.yml | 2 +- .github/workflows/ecosystem-submission.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/submission.yml b/.github/ISSUE_TEMPLATE/submission.yml index 838f7f463d..c5a2c05c7b 100644 --- a/.github/ISSUE_TEMPLATE/submission.yml +++ b/.github/ISSUE_TEMPLATE/submission.yml @@ -1,7 +1,7 @@ name: Project submission description: Ecosystem project submission title: "[Submission]: " -labels: [] +labels: ["submission"] assignees: - octocat body: diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index e1eed380cd..7312ac587f 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -220,7 +220,7 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ["ready", "submission"] + labels: ["ready"] }) - name: PR labeling status ready remove on hold continue-on-error: true @@ -244,7 +244,7 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ["on hold", "submission"] + labels: ["on hold"] }) - name: PR labeling status on hold remove ready continue-on-error: true From 52208b5c50909ba4b780a92dbaa0e4d73831af69 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 17:13:31 +0200 Subject: [PATCH 31/45] clean members.json --- ecosystem/resources/members.json | 1 + 1 file changed, 1 insertion(+) diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 55fa41c3dc..5ab805a15a 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -7016,3 +7016,4 @@ } } } + From c97318a616a0d73634c31777808cc25f8dfdd87d Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 17:14:13 +0200 Subject: [PATCH 32/45] clean members.json --- ecosystem/resources/members.json | 1 - 1 file changed, 1 deletion(-) diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 5ab805a15a..55fa41c3dc 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -7016,4 +7016,3 @@ } } } - From cf23a803f6ecd38f808580faec2fbf442b0dce40 Mon Sep 17 00:00:00 2001 From: Mica Date: Sun, 6 Aug 2023 17:16:05 +0200 Subject: [PATCH 33/45] clean members.json --- ecosystem/resources/members.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json index 55fa41c3dc..2fb3c41b48 100644 --- a/ecosystem/resources/members.json +++ b/ecosystem/resources/members.json @@ -7015,4 +7015,4 @@ "historical_test_results": [] } } -} +} \ No newline at end of file From 9cbf07fc7a297b0c1d4139b60e250f2dc160e77f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:24:48 +0200 Subject: [PATCH 34/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 7312ac587f..5c61701e18 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -108,7 +108,8 @@ jobs: base: main # Check result - - name: Check return + - name: Check test results + # Gets results of repo tests, and creates comment to post to issue id: check-return run: | # STD check From bab4e23ac6ff5acb282d055f8736fdbd6a16aa5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:24:59 +0200 Subject: [PATCH 35/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 5c61701e18..3ce0761cc3 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -157,7 +157,7 @@ jobs: echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md # PR labels and comment - - name: PR labeling status ready + - name: 'PR: Add "ready" label' uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: From 84f9734d176cca874083225e4a8ccd70d9a6f0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:25:17 +0200 Subject: [PATCH 36/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 3ce0761cc3..3dcc4cf913 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -168,7 +168,7 @@ jobs: repo: context.repo.repo, labels: ["ready"] }) - - name: PR labeling status ready remove on hold + - name: 'PR: Remove "on hold" label' continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} From 388a155fa7b06b401d5b597db2642bd58364489e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:25:25 +0200 Subject: [PATCH 37/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 3dcc4cf913..2d2e2b2ca0 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -181,7 +181,7 @@ jobs: name: ["on hold"] }) - - name: PR labeling status on hold + - name: 'PR: Add "on hold" label' uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: From 8454073fc2a4d109b04097e64473eb032f5358f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:25:46 +0200 Subject: [PATCH 38/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 2d2e2b2ca0..1164819576 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -192,7 +192,7 @@ jobs: repo: context.repo.repo, labels: ["on hold"] }) - - name: PR labeling status on hold remove ready + - name: 'PR: Remove "ready" label' continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} From c61b3d348d942c5df61fe46fa7527e6985184413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:26:00 +0200 Subject: [PATCH 39/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 1164819576..eb638deade 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -205,7 +205,7 @@ jobs: name: ["ready"] }) - - name: PR create comment + - name: 'PR: Post comment' uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ steps.cpr.outputs.pull-request-number }} From 2e1ed7c4c8250cd58d922f4516166d901902232d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:26:21 +0200 Subject: [PATCH 40/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index eb638deade..264661d8a0 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -212,7 +212,7 @@ jobs: body-path: "summary_output.md" # Issue labels and comment - - name: Issue labeling status ready + - name: 'Issue: Add "ready" label' uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: From 068b085ad9c6a77d75992918c541c90582aa170f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:26:37 +0200 Subject: [PATCH 41/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 264661d8a0..056c43114c 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -260,7 +260,7 @@ jobs: name: ["ready"] }) - - name: Issue create comment + - name: 'Issue: Post comment' uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} From 7153ab82aa4fc579a8ff41d2b019b1d18a11bf5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl?= Date: Sat, 12 Aug 2023 12:26:48 +0200 Subject: [PATCH 42/45] Update .github/workflows/ecosystem-submission.yml Co-authored-by: Frank Harkins --- .github/workflows/ecosystem-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 056c43114c..ac81981e6e 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -236,7 +236,7 @@ jobs: name: ["on hold"] }) - - name: Issue labeling status on hold + - name: 'Issue: Add "on hold" label' uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: From 956659ecf9b75c04ef362a30d22e7905877cc5b9 Mon Sep 17 00:00:00 2001 From: Mica Date: Wed, 16 Aug 2023 20:43:21 +0200 Subject: [PATCH 43/45] merge script together --- .github/workflows/ecosystem-submission.yml | 79 +++++++--------------- 1 file changed, 23 insertions(+), 56 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index ac81981e6e..1272943cf9 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -108,8 +108,8 @@ jobs: base: main # Check result + ## Gets results of repo tests, and creates comment to post into issue/PR - name: Check test results - # Gets results of repo tests, and creates comment to post to issue id: check-return run: | # STD check @@ -157,102 +157,63 @@ jobs: echo "$(cat $GITHUB_STEP_SUMMARY)" > summary_output.md # PR labels and comment - - name: 'PR: Add "ready" label' + - name: "Label 'ready'" uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: script: | + # PR github.rest.issues.addLabels({ issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, repo: context.repo.repo, labels: ["ready"] }) - - name: 'PR: Remove "on hold" label' - continue-on-error: true - uses: actions/github-script@v6 - if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} - with: - script: | github.rest.issues.removeLabel({ issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, repo: context.repo.repo, name: ["on hold"] }) - - - name: 'PR: Add "on hold" label' - uses: actions/github-script@v6 - if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} - with: - script: | + # Issue github.rest.issues.addLabels({ - issue_number: ${{ steps.cpr.outputs.pull-request-number }}, + issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ["on hold"] + labels: ["ready"] }) - - name: 'PR: Remove "ready" label' - continue-on-error: true - uses: actions/github-script@v6 - if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} - with: - script: | github.rest.issues.removeLabel({ - issue_number: ${{ steps.cpr.outputs.pull-request-number }}, + issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - name: ["ready"] + name: ["on hold"] }) - - name: 'PR: Post comment' - uses: peter-evans/create-or-update-comment@v3 - with: - issue-number: ${{ steps.cpr.outputs.pull-request-number }} - body-path: "summary_output.md" - - # Issue labels and comment - - name: 'Issue: Add "ready" label' + - name: "Label 'on hold'" uses: actions/github-script@v6 - if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} + if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: script: | + # PR github.rest.issues.addLabels({ - issue_number: context.issue.number, + issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, repo: context.repo.repo, - labels: ["ready"] + labels: ["on hold"] }) - - name: PR labeling status ready remove on hold - continue-on-error: true - uses: actions/github-script@v6 - if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} - with: - script: | github.rest.issues.removeLabel({ - issue_number: context.issue.number, + issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, repo: context.repo.repo, - name: ["on hold"] + name: ["ready"] }) - - - name: 'Issue: Add "on hold" label' - uses: actions/github-script@v6 - if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} - with: - script: | + # Issue github.rest.issues.addLabels({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, labels: ["on hold"] }) - - name: PR labeling status on hold remove ready - continue-on-error: true - uses: actions/github-script@v6 - if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} - with: - script: | github.rest.issues.removeLabel({ issue_number: context.issue.number, owner: context.repo.owner, @@ -260,7 +221,13 @@ jobs: name: ["ready"] }) - - name: 'Issue: Post comment' + - name: "PR: Post comment" + uses: peter-evans/create-or-update-comment@v3 + with: + issue-number: ${{ steps.cpr.outputs.pull-request-number }} + body-path: "summary_output.md" + + - name: "Issue: Post comment" uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ github.event.issue.number }} From 0fe34c9a1f54c5d0fabba0cf73a459a11fa4289c Mon Sep 17 00:00:00 2001 From: Mica Date: Wed, 16 Aug 2023 20:54:32 +0200 Subject: [PATCH 44/45] comment not bash --- .github/workflows/ecosystem-submission.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index 1272943cf9..c366f41250 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -162,7 +162,7 @@ jobs: if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: script: | - # PR + // PR github.rest.issues.addLabels({ issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, @@ -175,7 +175,7 @@ jobs: repo: context.repo.repo, name: ["on hold"] }) - # Issue + // Issue github.rest.issues.addLabels({ issue_number: context.issue.number, owner: context.repo.owner, @@ -194,7 +194,7 @@ jobs: if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: script: | - # PR + // PR github.rest.issues.addLabels({ issue_number: ${{ steps.cpr.outputs.pull-request-number }}, owner: context.repo.owner, @@ -207,7 +207,7 @@ jobs: repo: context.repo.repo, name: ["ready"] }) - # Issue + // Issue github.rest.issues.addLabels({ issue_number: context.issue.number, owner: context.repo.owner, From d961fd55ad0b97d41d4fc1246bf52f16f8d41a8c Mon Sep 17 00:00:00 2001 From: Mica Date: Wed, 16 Aug 2023 21:10:45 +0200 Subject: [PATCH 45/45] comment not bash --- .github/workflows/ecosystem-submission.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ecosystem-submission.yml b/.github/workflows/ecosystem-submission.yml index c366f41250..f592ca2bed 100644 --- a/.github/workflows/ecosystem-submission.yml +++ b/.github/workflows/ecosystem-submission.yml @@ -158,6 +158,7 @@ jobs: # PR labels and comment - name: "Label 'ready'" + continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD == 'True' }} with: @@ -190,6 +191,7 @@ jobs: }) - name: "Label 'on hold'" + continue-on-error: true uses: actions/github-script@v6 if: ${{ steps.check-return.outputs.PASS_STD != 'True' }} with: