diff --git a/.github/workflows/ecosystem-recompile.yml b/.github/workflows/ecosystem-recompile.yml deleted file mode 100644 index 5faa0d0c03..0000000000 --- a/.github/workflows/ecosystem-recompile.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Ecosystem | Recompile members.json - -on: - push: - branches: - - 'main' - paths: - - 'ecosystem/resources/members/*.toml' - workflow_dispatch: - - -jobs: - recompile_workflow: - runs-on: ubuntu-latest - env: - tox_env: "py39" - python-version: "3.9" - concurrency: - group: ci-ecosystem-recompile - cancel-in-progress: true - steps: - # setup deps - - uses: actions/checkout@v3 - - name: Set up Python ${{ env.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ env.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install -r requirements-dev.txt - - - name: Git pull - # Just in case anything has changed since the action started - run: git pull - - - name: Recompile and push - run: | - python -m manager members recompile - git config user.name github-actions - git config user.email github-actions@github.com - - if [[ $(git status -s) != "" ]]; then - git add ecosystem/resources/members.json - git commit -m "Recompile members.json" - git push - fi - diff --git a/docs/project_overview.md b/docs/project_overview.md index 4990e35391..55e089366c 100644 --- a/docs/project_overview.md +++ b/docs/project_overview.md @@ -109,24 +109,17 @@ https://github.com/mickahell/qiskit-ecosystem_template. We store each member of the ecosystem as a TOML file under [`ecosystem/resources/members`](https://github.com/qiskit-community/ecosystem/blob/main/ecosystem/resources/members); these are the files you should edit when adding / updating members to the -ecosystem. Access to this file is handled through the +ecosystem. Access to these files is handled programmatically through the [`DAO`](https://github.com/qiskit-community/ecosystem/blob/main/ecosystem/daos/dao.py) class. -The qiskit.org page pulls information from the compiled -[`members.json`](https://github.com/qiskit-community/ecosystem/blob/main/ecosystem/resources/members.json)) -file. This file should be compiled automatically by an action on pushing to -`main`, but you can also compile it locally (e.g. for testing) using +To generate the webpage from the TOML files, run: ```sh -python -m manager members recompile +tox -e website ``` -You shouldn't edit `members.json` manually. - -If you somehow get a merge conflict in `members.json`, don't try to manually -resolve the conflict. Instead, merge the branch, then run `python -m manager members -recompile` and add the file to resolve the conflict. +Then open `website/index.html` in your browser. ### Tests diff --git a/ecosystem/cli/members.py b/ecosystem/cli/members.py index 2e37cb352d..887c2ab547 100644 --- a/ecosystem/cli/members.py +++ b/ecosystem/cli/members.py @@ -18,7 +18,7 @@ class CliMembers: Each public method of this class is CLI command and arguments for method are options/flags for this command. - Ex: `python manager.py members recompile --body=""` + Ex: `python manager.py members update_badges` """ def __init__(self, root_path: Optional[str] = None): @@ -28,10 +28,6 @@ def __init__(self, root_path: Optional[str] = None): self.dao = DAO(path=self.resources_dir) self.logger = logger - def recompile(self): - """Recompile `members.json` from human-readable files.""" - self.dao.compile_json() - def add_repo_2db( self, repo_name: str, diff --git a/ecosystem/cli/website.py b/ecosystem/cli/website.py index 5a0888fc8e..27d544fa6c 100644 --- a/ecosystem/cli/website.py +++ b/ecosystem/cli/website.py @@ -24,7 +24,7 @@ def __init__(self, root_path: Optional[str] = None): self.dao = DAO(path=self.resources_dir) def build_website(self): - """Generates the ecosystem web page reading `members.json`.""" + """Generates the ecosystem web page reading the TOML files.""" environment = Environment(loader=FileSystemLoader("ecosystem/html_templates/")) projects = self.dao.storage.read() projects_sorted = sorted( diff --git a/ecosystem/daos/dao.py b/ecosystem/daos/dao.py index 5853235135..9d0f0e631b 100644 --- a/ecosystem/daos/dao.py +++ b/ecosystem/daos/dao.py @@ -4,7 +4,6 @@ File structure: root_path - ├── members.json # compiled file; don't edit manually └── members    └── repo-name.toml """ @@ -88,7 +87,6 @@ def __init__(self, path: str): """ self.storage = TomlStorage(path) self.labels_json_path = Path(path, "labels.json") - self.compiled_json_path = Path(path, "members.json") def write(self, repo: Repository): """ @@ -160,28 +158,6 @@ def update_labels(self, labels: list[str]): sorted(new_label_list, key=lambda x: x["name"]), labels_file, indent=4 ) - def compile_json(self): - """ - Dump database to JSON file for consumption by qiskit.org - Needs this structure: - - { tier: { # e.g. Main, Community - index: repo # `repo` is data from repo-name.toml - }} - - """ - data = self.storage.read() - - out = {} - for repo in data.values(): - if repo.tier not in out: - out[repo.tier] = {} - index = str(len(out[repo.tier])) - out[repo.tier][index] = repo.to_dict() - - with open(self.compiled_json_path, "w") as file: - json.dump(out, file, indent=4) - def add_repo_test_result(self, repo_url: str, test_result: TestResult) -> None: """ Adds test result to repository. diff --git a/ecosystem/resources/README.md b/ecosystem/resources/README.md index 66428d17e2..90f274066c 100644 --- a/ecosystem/resources/README.md +++ b/ecosystem/resources/README.md @@ -1,10 +1,8 @@ -Ecosystem database -================== +Ecosystem data files +==================== -This folder contains the actual ecosystem data, including the data that appears -on [qiskit.org/ecosystem](https://qiskit.org/ecosystem). +This folder contains the actual ecosystem data. If you want to edit or remove something, go to the [`members`](./members) folder and edit or delete the TOML file for that repo. On pushing to `main`, a -GitHub action should recompile the JSON files that -[qiskit.org/ecosystem](https://qiskit.org/ecosystem) reads from. +GitHub action should recompile and publish the website. diff --git a/ecosystem/resources/members.json b/ecosystem/resources/members.json deleted file mode 100644 index 02ce3a8081..0000000000 --- a/ecosystem/resources/members.json +++ /dev/null @@ -1,9911 +0,0 @@ -{ - "Community": { - "0": { - "name": "Qiskit Machine Learning", - "url": "https://github.com/qiskit-community/qiskit-machine-learning", - "description": "The Machine Learning package contains sample datasets and quantum ML algorithms.", - "licence": "Apache 2.0", - "labels": [ - "Algorithms", - "Machine learning" - ], - "created_at": 1636403010.012954, - "updated_at": 1636403010.012956, - "tier": "Community", - "website": "https://qiskit.org/ecosystem/machine-learning", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 521, - "group": "applications" - }, - "1": { - "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", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756813", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698138740.260072 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756813", - "qiskit_version": "unknown", - "timestamp": 1698138729.221521 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756813", - "qiskit_version": "unknown", - "timestamp": 1698138750.98411 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint", - "qiskit" - ], - "debian_dependencies": [], - "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" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692695490.79955 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463", - "package_commit_hash": "c60d3b8e735d54c1180fe788876f3c4dacbc3cba", - "qiskit_version": "0.39.0", - "timestamp": 1692695490.799553 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.34.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463", - "qiskit_version": "0.34.1", - "timestamp": 1692695490.799556 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.34.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548463", - "qiskit_version": "0.34.1", - "timestamp": 1692695490.799559 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653656", - "qiskit_version": "-", - "timestamp": 1692695490.799562 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653687", - "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b", - "qiskit_version": "-", - "timestamp": 1692695490.799565 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039653655", - "qiskit_version": "-", - "timestamp": 1692695490.799568 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756813", - "qiskit_version": "unknown", - "timestamp": 1698138750.98411 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756813", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698138740.260072 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756813", - "qiskit_version": "unknown", - "timestamp": 1698138729.221521 - } - ], - "stars": 135, - "group": "other" - }, - "2": { - "name": "mirror-gates", - "url": "https://github.com/Pitt-JonesLab/mirror-gates", - "description": "MIRAGE is a transpilation plugin for quantum circuits that minimizes the use of SWAP gates while optimizing native basis gate decomposition through mirror gates. Specifically designed for iSWAP-based quantum systems, MIRAGE improves circuit depth, making quantum algorithms more practical and efficient.", - "licence": "MIT license", - "contact_info": "evmckinney9@gmail.com", - "alternatives": "_No response_", - "affiliations": "University of Pittsburgh", - "labels": [ - "Paper implementation" - ], - "tier": "Community", - "website": "https://arxiv.org/abs/2308.03874", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756541", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139161.164437 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756541", - "qiskit_version": "0.44.2", - "timestamp": 1698139201.800937 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756541", - "qiskit_version": "0.44.2", - "timestamp": 1698138764.001804 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756541", - "qiskit_version": "0.44.2", - "timestamp": 1698139199.340997 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543442", - "qiskit_version": "0.44.1", - "timestamp": 1695719974.491691 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543442", - "qiskit_version": "0.44.1", - "timestamp": 1695719534.001157 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545038402", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534336.658552 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756541", - "qiskit_version": "0.44.2", - "timestamp": 1698139199.340997 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756541", - "qiskit_version": "0.44.2", - "timestamp": 1698138764.001804 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756541", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139161.164437 - } - ], - "stars": 3, - "group": "transpiler_plugin" - }, - "3": { - "name": "Qiskit AQT Provider", - "url": "https://github.com/qiskit-community/qiskit-aqt-provider", - "description": "Qiskit provider for ion-trap quantum computers from Alpine Quantum Technologies (AQT). https://www.aqt.eu/qc-systems/", - "licence": "Apache License 2.0", - "contact_info": "info@aqt.eu", - "alternatives": "_No response_", - "affiliations": "Alpine Quantum Technologies GmbH", - "labels": [ - "Provider" - ], - "tier": "Community", - "website": "https://qiskit-community.github.io/qiskit-aqt-provider/", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757109", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139135.510237 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757109", - "qiskit_version": "0.44.2", - "timestamp": 1698139168.501355 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757109", - "qiskit_version": "0.44.2", - "timestamp": 1698138760.205501 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.43.3", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757109", - "qiskit_version": "0.43.3", - "timestamp": 1698139164.804802 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.43.3", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757109", - "qiskit_version": "0.43.3", - "timestamp": 1698139164.804802 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757109", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139135.510237 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757109", - "qiskit_version": "0.44.2", - "timestamp": 1698138760.205501 - } - ], - "stars": 26, - "group": "provider" - }, - "4": { - "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": [ - "Circuit simulator" - ], - "created_at": 1678827878.240528, - "updated_at": 1678827878.240528, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757522", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139343.700825 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469022488", - "qiskit_version": "0.39.2", - "timestamp": 1692696024.685026 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757522", - "qiskit_version": "0.44.2", - "timestamp": 1698138850.003291 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757522", - "qiskit_version": "0.44.2", - "timestamp": 1698139439.685505 - } - ], - "styles_results": [ - { - "passed": true, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": true, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7", - "3.8", - "3.9" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint", - "black" - ], - "debian_dependencies": [], - "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/" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696024.68505 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692696024.685054 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696024.685058 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233", - "qiskit_version": "0.37.0", - "timestamp": 1692696024.685061 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548233", - "qiskit_version": "0.37.0", - "timestamp": 1692696024.685065 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979", - "qiskit_version": "0.37.1", - "timestamp": 1692696024.685069 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824120979", - "qiskit_version": "0.37.1", - "timestamp": 1692696024.685073 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180918979", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696024.685077 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637724", - "qiskit_version": "0.38.0", - "timestamp": 1692696024.685081 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637748", - "qiskit_version": "0.38.0", - "timestamp": 1692696024.685085 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223753", - "qiskit_version": "0.39.0", - "timestamp": 1692696024.685088 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223761", - "qiskit_version": "0.39.0", - "timestamp": 1692696024.685092 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950511", - "qiskit_version": "0.39.2", - "timestamp": 1692696024.685095 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950486", - "qiskit_version": "0.39.2", - "timestamp": 1692696024.685099 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700830", - "qiskit_version": "0.39.4", - "timestamp": 1692696024.685103 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700868", - "qiskit_version": "0.39.4", - "timestamp": 1692696024.685107 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700942", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696024.685111 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625453", - "qiskit_version": "0.39.5", - "timestamp": 1692696024.685115 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625536", - "qiskit_version": "0.39.5", - "timestamp": 1692696024.685119 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481181", - "qiskit_version": "0.40.0", - "timestamp": 1692696024.685122 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481227", - "qiskit_version": "0.40.0", - "timestamp": 1692696024.685126 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020187", - "qiskit_version": "0.41.0", - "timestamp": 1692696024.68513 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020171", - "qiskit_version": "0.41.0", - "timestamp": 1692696024.685134 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043735", - "qiskit_version": "0.41.1", - "timestamp": 1692696024.685138 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043694", - "qiskit_version": "0.41.1", - "timestamp": 1692696024.685141 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043772", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696024.685145 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544130", - "qiskit_version": "0.44.1", - "timestamp": 1695719580.976353 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544130", - "qiskit_version": "0.44.1", - "timestamp": 1695720034.002218 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545035845", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534511.538462 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757522", - "qiskit_version": "0.44.2", - "timestamp": 1698139439.685505 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757522", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139343.700825 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757522", - "qiskit_version": "0.44.2", - "timestamp": 1698138850.003291 - } - ], - "stars": 60, - "group": "other" - }, - "5": { - "name": "Quantum Inspire SDK", - "url": "https://github.com/QuTech-Delft/quantuminspire", - "description": "This platform allows you to execute quantum algorithms using the cQASM language.", - "licence": "Apache 2.0", - "labels": [ - "Algorithms" - ], - "created_at": 1678827878.401835, - "updated_at": 1678827878.401836, - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756939", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139314.041627 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756939", - "qiskit_version": "0.44.2", - "timestamp": 1698139413.126746 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756939", - "qiskit_version": "0.44.2", - "timestamp": 1698138857.848313 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756939", - "qiskit_version": "0.44.2", - "timestamp": 1698139410.817187 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": true, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint", - "qiskit" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest src/tests" - ], - "styles_check_command": [ - "pylint -rn src" - ], - "coverages_check_command": [ - "coverage run --source=\"./src/quantuminspire\" -m unittest discover -s src/tests -t src -v" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696301.698718 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692696301.698721 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696301.698725 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414", - "qiskit_version": "0.37.0", - "timestamp": 1692696301.698729 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548414", - "qiskit_version": "0.37.0", - "timestamp": 1692696301.698732 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223", - "qiskit_version": "0.37.1", - "timestamp": 1692696301.698736 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121223", - "qiskit_version": "0.37.1", - "timestamp": 1692696301.69874 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919652", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696301.698743 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638229", - "qiskit_version": "0.38.0", - "timestamp": 1692696301.698747 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638217", - "qiskit_version": "0.38.0", - "timestamp": 1692696301.69875 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224170", - "qiskit_version": "0.39.0", - "timestamp": 1692696301.698754 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224153", - "qiskit_version": "0.39.0", - "timestamp": 1692696301.698757 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951415", - "qiskit_version": "0.39.2", - "timestamp": 1692696301.698761 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951365", - "qiskit_version": "0.39.2", - "timestamp": 1692696301.698764 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702185", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696301.698768 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702004", - "qiskit_version": "0.39.4", - "timestamp": 1692696301.698771 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701988", - "qiskit_version": "0.39.4", - "timestamp": 1692696301.698775 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626686", - "qiskit_version": "0.39.5", - "timestamp": 1692696301.698778 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626752", - "qiskit_version": "0.39.5", - "timestamp": 1692696301.698781 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482051", - "qiskit_version": "0.40.0", - "timestamp": 1692696301.698785 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481946", - "qiskit_version": "0.40.0", - "timestamp": 1692696301.698788 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021022", - "qiskit_version": "0.41.0", - "timestamp": 1692696301.698792 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021114", - "qiskit_version": "0.41.0", - "timestamp": 1692696301.698795 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044614", - "qiskit_version": "0.41.1", - "timestamp": 1692696301.698798 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044684", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696301.698802 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044617", - "qiskit_version": "0.41.1", - "timestamp": 1692696301.698805 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310542832", - "qiskit_version": "0.44.1", - "timestamp": 1695720105.48866 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310542832", - "qiskit_version": "0.44.1", - "timestamp": 1695719617.17777 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545038691", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534475.212643 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756939", - "qiskit_version": "0.44.2", - "timestamp": 1698139410.817187 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756939", - "qiskit_version": "0.44.2", - "timestamp": 1698138857.848313 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756939", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139314.041627 - } - ], - "stars": 60, - "group": "other" - }, - "6": { - "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": [ - "Paper implementation", - "Circuit" - ], - "created_at": 1678827878.737541, - "updated_at": 1678827878.737541, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758006", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139358.126866 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758006", - "qiskit_version": "0.44.2", - "timestamp": 1698139007.11007 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758006", - "qiskit_version": "", - "timestamp": 1698139386.848174 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225279", - "qiskit_version": "0.39.0", - "timestamp": 1692695765.590688 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225231", - "qiskit_version": "0.39.0", - "timestamp": 1692695765.590691 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953115", - "qiskit_version": "0.39.2", - "timestamp": 1692695765.590695 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953228", - "qiskit_version": "0.39.2", - "timestamp": 1692695765.590698 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881841568", - "package_commit_hash": "0344a1c94b8eb8206da18cc74d9bdc70ad203c9a", - "qiskit_version": "0.40.0", - "timestamp": 1692695765.590701 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704714", - "qiskit_version": "0.39.4", - "timestamp": 1692695765.590705 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704666", - "qiskit_version": "0.39.4", - "timestamp": 1692695765.590708 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629059", - "qiskit_version": "0.39.5", - "timestamp": 1692695765.590712 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628983", - "qiskit_version": "0.39.5", - "timestamp": 1692695765.590715 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484838", - "qiskit_version": "0.40.0", - "timestamp": 1692695765.590718 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484746", - "qiskit_version": "0.40.0", - "timestamp": 1692695765.590722 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023237", - "qiskit_version": "0.41.0", - "timestamp": 1692695765.590725 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023197", - "qiskit_version": "0.41.0", - "timestamp": 1692695765.590729 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047083", - "qiskit_version": "0.41.1", - "timestamp": 1692695765.590732 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047031", - "qiskit_version": "0.41.1", - "timestamp": 1692695765.590735 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047132", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692695765.590738 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547193", - "qiskit_version": "0.44.1", - "timestamp": 1695720086.683235 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545040287", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534713.446934 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758006", - "qiskit_version": "", - "timestamp": 1698139386.848174 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758006", - "qiskit_version": "0.44.2", - "timestamp": 1698139007.11007 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758006", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139358.126866 - } - ], - "stars": 6, - "group": "transpiler_plugin" - }, - "7": { - "name": "Blueqat", - "url": "https://github.com/Blueqat/Blueqat", - "description": "A quantum computing SDK", - "licence": "Apache 2.0", - "labels": [ - "Converter", - "Software development kit" - ], - "created_at": 1678827878.864396, - "updated_at": 1678827878.864397, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754974", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139416.554405 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754974", - "qiskit_version": "0.44.2", - "timestamp": 1698138884.951766 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754974", - "qiskit_version": "0.44.2", - "timestamp": 1698139592.925362 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "qiskit", - "Cython", - "coverage", - "pylint" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn blueqat tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692696330.891338 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696330.891341 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696330.891345 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522", - "qiskit_version": "0.37.0", - "timestamp": 1692696330.891348 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548522", - "qiskit_version": "0.37.0", - "timestamp": 1692696330.891352 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347", - "qiskit_version": "0.37.1", - "timestamp": 1692696330.891355 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121347", - "qiskit_version": "0.37.1", - "timestamp": 1692696330.891359 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920109", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696330.891363 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638641", - "qiskit_version": "0.38.0", - "timestamp": 1692696330.891367 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638640", - "qiskit_version": "0.38.0", - "timestamp": 1692696330.891371 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319732917", - "qiskit_version": "0.39.0", - "timestamp": 1692696330.891374 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224539", - "qiskit_version": "0.39.0", - "timestamp": 1692696330.891378 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952019", - "qiskit_version": "0.39.2", - "timestamp": 1692696330.891381 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951991", - "qiskit_version": "0.39.2", - "timestamp": 1692696330.891385 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703336", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696330.891389 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703323", - "qiskit_version": "0.39.4", - "timestamp": 1692696330.891392 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703183", - "qiskit_version": "0.39.4", - "timestamp": 1692696330.891396 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627601", - "qiskit_version": "0.39.5", - "timestamp": 1692696330.891399 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627633", - "qiskit_version": "0.39.5", - "timestamp": 1692696330.891403 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482988", - "qiskit_version": "0.40.0", - "timestamp": 1692696330.891406 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021814", - "qiskit_version": "0.41.0", - "timestamp": 1692696330.89141 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021797", - "qiskit_version": "0.41.0", - "timestamp": 1692696330.891413 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021901", - "package_commit_hash": "4e3b283157b43687db4260cee6decf17fbb37608", - "qiskit_version": "0.43.0", - "timestamp": 1692696330.891417 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045386", - "qiskit_version": "0.41.1", - "timestamp": 1692696330.891421 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045462", - "qiskit_version": "0.41.1", - "timestamp": 1692696330.891424 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545883", - "qiskit_version": "0.44.1", - "timestamp": 1695720706.800564 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545883", - "qiskit_version": "0.44.1", - "timestamp": 1695719955.677036 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545041596", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535189.880883 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754974", - "qiskit_version": "0.44.2", - "timestamp": 1698139592.925362 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754974", - "qiskit_version": "0.44.2", - "timestamp": 1698138884.951766 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754974", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139416.554405 - } - ], - "stars": 361, - "group": "other" - }, - "8": { - "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": [ - "Productivity" - ], - "created_at": 1641938992.363096, - "updated_at": 1641938992.363099, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 23, - "group": "other" - }, - "9": { - "name": "Quantum-Glasses", - "url": "https://github.com/Jayshah25/Quantum-Glasses", - "description": "Visualise the effects of single-qubit gates on a qubit via Bloch sphere simulation in a Tkinter software.", - "licence": "Apache License 2.0", - "contact_info": "shahj097@gmail.com", - "alternatives": "The only alternative is to code up a circuit (qiskit.QuantumCircuit) and pass the circuit to visualize_transition from qiskit.visualization. Quantum Glasses implementation wraps all of this into a simple, easy to use Tkinter Software.", - "affiliations": "_No response_", - "labels": [ - "Visualization" - ], - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760096", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139918.283305 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760096", - "qiskit_version": "0.44.2", - "timestamp": 1698139974.946862 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760096", - "qiskit_version": "0.44.2", - "timestamp": 1698139515.626547 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760096", - "qiskit_version": "0.44.2", - "timestamp": 1698139971.227469 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544967", - "qiskit_version": "0.44.1", - "timestamp": 1695719933.016126 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544967", - "qiskit_version": "0.44.1", - "timestamp": 1695719540.595439 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545041700", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534962.50959 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760096", - "qiskit_version": "0.44.2", - "timestamp": 1698139971.227469 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760096", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139918.283305 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760096", - "qiskit_version": "0.44.2", - "timestamp": 1698139515.626547 - } - ], - "stars": 13, - "group": "other" - }, - "10": { - "name": "Qiskit BIP Mapper", - "url": "https://github.com/qiskit-community/qiskit-bip-mapper", - "description": "This plugin solves the routing and layout problems as a binary integer programming (BIP) problem. This is an implementation of G. Nannicini et al. \"Optimal qubit assignment and routing via integer programming.\" (arXiv:2106.06446).", - "licence": "Apache License 2.0", - "contact_info": "itoko@jp.ibm.com", - "alternatives": "_No response_", - "affiliations": "IBM", - "labels": [ - "Paper implementation" - ], - "created_at": 1681306690.423614, - "updated_at": 1681306690.423619, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 4, - "group": "transpiler_plugin" - }, - "11": { - "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, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 9, - "group": "other" - }, - "12": { - "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": [ - "Jupyter notebook" - ], - "created_at": 1670402642.907656, - "updated_at": 1670402642.907662, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 0, - "group": "other" - }, - "13": { - "name": "Q-CTRL 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": [ - "Hardware" - ], - "created_at": 1678827878.68594, - "updated_at": 1678827878.68594, - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755874", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139173.811424 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755874", - "qiskit_version": "0.44.2", - "timestamp": 1698139223.270685 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755874", - "qiskit_version": "0.44.2", - "timestamp": 1698138766.213613 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755874", - "qiskit_version": "0.44.2", - "timestamp": 1698139222.061688 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "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" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn qctrlopencontrols tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538", - "qiskit_version": "0.37.0", - "timestamp": 1692696056.576248 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548538", - "qiskit_version": "0.37.0", - "timestamp": 1692696056.576252 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404", - "qiskit_version": "0.37.1", - "timestamp": 1692696056.576255 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121404", - "qiskit_version": "0.37.1", - "timestamp": 1692696056.57626 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3134449307", - "package_commit_hash": "672e95d089ba0e834915796f2b1d59527f3b4ef2", - "qiskit_version": "0.39.0", - "timestamp": 1692696056.576264 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638751", - "qiskit_version": "0.38.0", - "timestamp": 1692696056.576267 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638746", - "qiskit_version": "0.38.0", - "timestamp": 1692696056.576271 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224632", - "qiskit_version": "0.39.0", - "timestamp": 1692696056.576274 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224622", - "qiskit_version": "0.39.0", - "timestamp": 1692696056.576278 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952236", - "qiskit_version": "0.39.2", - "timestamp": 1692696056.576282 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952183", - "qiskit_version": "0.39.2", - "timestamp": 1692696056.576285 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703617", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696056.576289 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703451", - "qiskit_version": "0.39.4", - "timestamp": 1692696056.576293 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703538", - "qiskit_version": "0.39.4", - "timestamp": 1692696056.576296 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627765", - "qiskit_version": "0.39.5", - "timestamp": 1692696056.5763 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627780", - "qiskit_version": "0.39.5", - "timestamp": 1692696056.576304 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483343", - "qiskit_version": "0.40.0", - "timestamp": 1692696056.576307 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483261", - "qiskit_version": "0.40.0", - "timestamp": 1692696056.576311 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021941", - "qiskit_version": "0.41.0", - "timestamp": 1692696056.576315 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022030", - "qiskit_version": "0.41.0", - "timestamp": 1692696056.576319 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045764", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696056.576323 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045663", - "qiskit_version": "0.41.1", - "timestamp": 1692696056.576326 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045697", - "qiskit_version": "0.41.1", - "timestamp": 1692696056.57633 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543949", - "qiskit_version": "0.44.1", - "timestamp": 1695719927.37986 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543949", - "qiskit_version": "0.44.1", - "timestamp": 1695719545.209856 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545036452", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534338.558521 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755874", - "qiskit_version": "0.44.2", - "timestamp": 1698138766.213613 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755874", - "qiskit_version": "0.44.2", - "timestamp": 1698139222.061688 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755874", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139173.811424 - } - ], - "stars": 91, - "group": "other" - }, - "14": { - "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": [ - "Game" - ], - "created_at": 1678827877.979398, - "updated_at": 1678827877.979398, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758426", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139684.124916 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758426", - "qiskit_version": "0.44.2", - "timestamp": 1698139292.648446 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758426", - "qiskit_version": "0.36.1", - "timestamp": 1698139725.225703 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.9" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [ - "pytest" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn qpong tests" - ], - "coverages_check_command": [ - "coverage3 run -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938879", - "qiskit_version": "0.36.1", - "timestamp": 1692696186.206015 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920605", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696186.206018 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639040", - "qiskit_version": "0.38.0", - "timestamp": 1692696186.206021 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224830", - "qiskit_version": "0.39.0", - "timestamp": 1692696186.206024 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952730", - "qiskit_version": "0.39.2", - "timestamp": 1692696186.206027 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704251", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696186.206031 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704190", - "qiskit_version": "0.39.4", - "timestamp": 1692696186.206034 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628345", - "qiskit_version": "0.39.5", - "timestamp": 1692696186.206037 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052484060", - "qiskit_version": "0.40.0", - "timestamp": 1692696186.20604 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022588", - "qiskit_version": "0.41.0", - "timestamp": 1692696186.206043 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046211", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696186.206046 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046214", - "qiskit_version": "0.41.1", - "timestamp": 1692696186.206049 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547040", - "qiskit_version": "0.44.1", - "timestamp": 1695720134.51514 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545038230", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534415.978516 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758426", - "qiskit_version": "0.36.1", - "timestamp": 1698139725.225703 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758426", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139684.124916 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758426", - "qiskit_version": "0.44.2", - "timestamp": 1698139292.648446 - } - ], - "stars": 112, - "group": "other" - }, - "15": { - "name": "q-kernel-ops", - "url": "https://github.com/Travis-S-IBM/q-kernel-ops", - "description": "Code based on the paper \"Kernel Matrix Completion for Offline Quantum-Enhanced Machine Learning\" (arXiv:2112.08449).", - "licence": "Apache 2.0", - "contact_info": "### Email", - "alternatives": "### Alternatives", - "labels": [ - "Advocate mentorship project", - "Machine learning" - ], - "created_at": 1678827878.663275, - "updated_at": 1678827878.663276, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759887", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139905.157739 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759887", - "qiskit_version": "0.44.2", - "timestamp": 1698139503.322323 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759887", - "qiskit_version": "0.44.2", - "timestamp": 1698139949.288386 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654390", - "qiskit_version": "-", - "timestamp": 1692695539.680839 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654418", - "qiskit_version": "-", - "timestamp": 1692695539.680842 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654437", - "package_commit_hash": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b", - "qiskit_version": "-", - "timestamp": 1692695539.680846 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545107", - "qiskit_version": "unknown", - "timestamp": 1695719491.346655 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545107", - "package_commit_hash": "6e80e89e18da2691a86d4e2050db2e5479043b16", - "qiskit_version": "unknown", - "timestamp": 1695719489.109084 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545107", - "qiskit_version": "unknown", - "timestamp": 1695719486.283348 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545042171", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535055.034608 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759887", - "qiskit_version": "0.44.2", - "timestamp": 1698139503.322323 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759887", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139905.157739 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759887", - "qiskit_version": "0.44.2", - "timestamp": 1698139949.288386 - } - ], - "stars": 3, - "group": "other" - }, - "16": { - "name": "Qiskit Nature", - "url": "https://github.com/qiskit-community/qiskit-nature", - "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", - "licence": "Apache 2.0", - "labels": [ - "Algorithms", - "Physics", - "Chemistry" - ], - "created_at": 1636403009.16708, - "updated_at": 1636403009.167082, - "tier": "Community", - "website": "https://qiskit.org/ecosystem/nature", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 255, - "group": "applications" - }, - "17": { - "name": "pyRiemann-qiskit", - "url": "https://github.com/pyRiemann/pyRiemann-qiskit", - "description": "A library for supervised machine learning based on quantum computing and Riemannian geometry. The project is built on top of the Qiskit and pyRiemann projects and focuses on the classification of time series data.", - "licence": "BSD 3-Clause \"New\" or \"Revised\" license", - "contact_info": "gcattan@hotmail.fr", - "alternatives": "_No response_", - "affiliations": "pyRiemann (https://github.com/pyRiemann)", - "labels": [ - "Machine learning" - ], - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [], - "stars": 16, - "group": "applications" - }, - "18": { - "name": "Qiskit Algorithms", - "url": "https://github.com/qiskit-community/qiskit-algorithms", - "description": "Qiskit Algorithms is a library of quantum algorithms based on Qiskit, suitable to run on near-term quantum devices with short-depth circuits.", - "licence": "Apache License 2.0", - "contact_info": "ept@zurich.ibm.com", - "alternatives": "_No response_", - "affiliations": "IBM Quantum", - "labels": [ - "Algorithms" - ], - "tier": "Community", - "website": "https://qiskit.org/ecosystem/algorithms", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758625", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139664.505056 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758625", - "qiskit_version": "0.44.2", - "timestamp": 1698139283.43364 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758625", - "qiskit_version": "", - "timestamp": 1698139693.012806 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545040768", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534868.238438 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758625", - "qiskit_version": "", - "timestamp": 1698139693.012806 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758625", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139664.505056 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758625", - "qiskit_version": "0.44.2", - "timestamp": 1698139283.43364 - } - ], - "stars": 41, - "group": "applications" - }, - "19": { - "name": "SAT Circuits Synthesis 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 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, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 7, - "group": "other" - }, - "20": { - "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 at arXiv:2303.01493.", - "licence": "Apache License 2.0", - "contact_info": "sy2685@columbia.edu", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "Circuit simulator" - ], - "created_at": 1683727562.604629, - "updated_at": 1683727562.604634, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 17, - "group": "other" - }, - "21": { - "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": [ - "Converter" - ], - "tier": "Community", - "website": "https://github.com/KMU-quantum-classroom", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759165", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139942.00043 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759165", - "qiskit_version": "0.44.2", - "timestamp": 1698140016.855408 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759165", - "qiskit_version": "0.44.2", - "timestamp": 1698139442.510082 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759165", - "qiskit_version": "0.44.2", - "timestamp": 1698140015.539843 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936778455", - "qiskit_version": "0.44.0", - "timestamp": 1692695810.332834 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543985", - "qiskit_version": "0.44.1", - "timestamp": 1695719543.770475 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6467182720", - "qiskit_version": "0.44.1", - "timestamp": 1696929604.031178 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545037395", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534461.770505 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759165", - "qiskit_version": "0.44.2", - "timestamp": 1698139442.510082 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759165", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139942.00043 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759165", - "qiskit_version": "0.44.2", - "timestamp": 1698140015.539843 - } - ], - "stars": 2, - "group": "other" - }, - "22": { - "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": [ - "Paper implementation", - "Circuit" - ], - "created_at": 1678827878.56605, - "updated_at": 1678827878.566051, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757223", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139484.144841 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757223", - "qiskit_version": "0.44.2", - "timestamp": 1698138907.008306 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757223", - "qiskit_version": "", - "timestamp": 1698139637.364254 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225626", - "qiskit_version": "0.39.0", - "timestamp": 1692612759.255206 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225632", - "qiskit_version": "0.39.0", - "timestamp": 1692612759.25521 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953428", - "qiskit_version": "0.39.2", - "timestamp": 1692612759.255214 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953451", - "qiskit_version": "0.39.2", - "timestamp": 1692612759.255218 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705002", - "qiskit_version": "0.39.4", - "timestamp": 1692612759.255222 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705033", - "qiskit_version": "0.39.4", - "timestamp": 1692612759.255226 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705078", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692612759.25523 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629546", - "qiskit_version": "0.39.5", - "timestamp": 1692612759.255234 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485251", - "qiskit_version": "0.40.0", - "timestamp": 1692612759.255238 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485304", - "qiskit_version": "0.40.0", - "timestamp": 1692612759.255242 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023555", - "qiskit_version": "0.41.0", - "timestamp": 1692612759.255246 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023565", - "qiskit_version": "0.41.0", - "timestamp": 1692612759.25525 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047715", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692612759.255254 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047517", - "qiskit_version": "0.41.1", - "timestamp": 1692612759.255258 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047648", - "qiskit_version": "0.41.1", - "timestamp": 1692612759.255262 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545674", - "qiskit_version": "0.44.1", - "timestamp": 1695719676.008375 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545041435", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535071.427365 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757223", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139484.144841 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757223", - "qiskit_version": "", - "timestamp": 1698139637.364254 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757223", - "qiskit_version": "0.44.2", - "timestamp": 1698138907.008306 - } - ], - "stars": 7, - "group": "transpiler_plugin" - }, - "23": { - "name": "qiskit-classroom", - "url": "https://github.com/KMU-quantum-classroom/qiskit-classroom", - "description": "Qiskit-classroom is a toolkit that helps implement quantum algorithms by converting and visualizing different expressions used in the Qiskit ecosystem using Qiskit-classroom-converter. The following three transformations are supported : Quantum circuit to Dirac notation, quantum circuit to matrix, matrix to quantum circuit etc.", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "Visualization" - ], - "tier": "Community", - "website": "https://github.com/KMU-quantum-classroom", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758746", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139755.818676 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758746", - "qiskit_version": "0.44.2", - "timestamp": 1698139810.744639 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758746", - "qiskit_version": "0.44.2", - "timestamp": 1698139332.539176 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758746", - "qiskit_version": "0.44.1", - "timestamp": 1698139809.469183 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545378", - "qiskit_version": "0.44.1", - "timestamp": 1695719559.39801 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545042072", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535040.818637 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758746", - "qiskit_version": "0.44.2", - "timestamp": 1698139332.539176 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758746", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139755.818676 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758746", - "qiskit_version": "0.44.1", - "timestamp": 1698139809.469183 - } - ], - "stars": 1, - "group": "other" - }, - "24": { - "name": "Qiskit Rigetti Provider", - "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", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755591", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139181.634221 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755591", - "qiskit_version": "0.44.2", - "timestamp": 1698138775.989334 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755591", - "qiskit_version": "0.44.2", - "timestamp": 1698139234.28083 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "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" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn qiskit_rigetti tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692695857.395398 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692695857.395401 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692695857.395404 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565", - "qiskit_version": "0.37.0", - "timestamp": 1692695857.395407 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548565", - "qiskit_version": "0.37.0", - "timestamp": 1692695857.39541 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452", - "qiskit_version": "0.37.1", - "timestamp": 1692695857.395414 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121452", - "qiskit_version": "0.37.1", - "timestamp": 1692695857.395417 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920336", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692695857.39542 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638837", - "qiskit_version": "0.38.0", - "timestamp": 1692695857.395423 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638860", - "qiskit_version": "0.38.0", - "timestamp": 1692695857.395426 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224732", - "qiskit_version": "0.39.0", - "timestamp": 1692695857.395429 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224678", - "qiskit_version": "0.39.0", - "timestamp": 1692695857.395432 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952331", - "qiskit_version": "0.39.2", - "timestamp": 1692695857.395435 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952362", - "qiskit_version": "0.39.2", - "timestamp": 1692695857.395438 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703796", - "qiskit_version": "0.39.4", - "timestamp": 1692695857.395441 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703897", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692695857.395444 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703767", - "qiskit_version": "0.39.4", - "timestamp": 1692695857.395447 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628005", - "qiskit_version": "0.39.5", - "timestamp": 1692695857.39545 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627910", - "qiskit_version": "0.39.5", - "timestamp": 1692695857.395453 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483522", - "qiskit_version": "0.40.0", - "timestamp": 1692695857.395456 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483440", - "qiskit_version": "0.40.0", - "timestamp": 1692695857.395459 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022161", - "qiskit_version": "0.41.0", - "timestamp": 1692695857.395462 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022210", - "qiskit_version": "0.41.0", - "timestamp": 1692695857.395465 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045863", - "qiskit_version": "0.41.1", - "timestamp": 1692695857.395468 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046008", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692695857.395471 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045904", - "qiskit_version": "0.41.1", - "timestamp": 1692695857.395474 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543192", - "qiskit_version": "0.44.1", - "timestamp": 1695720026.049357 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543192", - "qiskit_version": "0.44.1", - "timestamp": 1695719561.482537 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6467183056", - "package_commit_hash": "cecb7889372342e3c2ca713d5c767ad793688842", - "qiskit_version": "0.45.0", - "timestamp": 1696929571.882994 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755591", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139181.634221 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755591", - "qiskit_version": "0.44.2", - "timestamp": 1698138775.989334 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755591", - "qiskit_version": "0.44.2", - "timestamp": 1698139234.28083 - } - ], - "stars": 9, - "group": "provider" - }, - "25": { - "name": "Kaleidoscope", - "url": "https://github.com/QuSTaR/kaleidoscope", - "description": "Kaleidoscope", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "Visualization" - ], - "created_at": 1678827878.7097, - "updated_at": 1678827878.709701, - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757652", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139280.013289 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757652", - "qiskit_version": "0.44.2", - "timestamp": 1698139359.563568 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757652", - "qiskit_version": "0.44.2", - "timestamp": 1698138842.504875 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757652", - "qiskit_version": "", - "timestamp": 1698139357.256973 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint" - ], - "debian_dependencies": [], - "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" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696374.581313 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696374.581316 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692696374.581319 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324", - "qiskit_version": "0.37.0", - "timestamp": 1692696374.581321 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548324", - "qiskit_version": "0.37.0", - "timestamp": 1692696374.581325 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157", - "qiskit_version": "0.37.1", - "timestamp": 1692696374.581328 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121157", - "qiskit_version": "0.37.1", - "timestamp": 1692696374.581331 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919383", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696374.581334 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637966", - "qiskit_version": "0.38.0", - "timestamp": 1692696374.581337 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638009", - "qiskit_version": "0.38.0", - "timestamp": 1692696374.58134 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223971", - "qiskit_version": "0.39.0", - "timestamp": 1692696374.581343 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223985", - "qiskit_version": "0.39.0", - "timestamp": 1692696374.581346 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951084", - "qiskit_version": "0.39.2", - "timestamp": 1692696374.581349 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951050", - "qiskit_version": "0.39.2", - "timestamp": 1692696374.581352 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701441", - "qiskit_version": "0.39.4", - "timestamp": 1692696374.581355 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701574", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696374.581358 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701523", - "qiskit_version": "0.39.4", - "timestamp": 1692696374.581361 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626207", - "qiskit_version": "0.39.5", - "timestamp": 1692696374.581365 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626228", - "qiskit_version": "0.39.5", - "timestamp": 1692696374.581368 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481624", - "qiskit_version": "0.40.0", - "timestamp": 1692696374.58137 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481674", - "qiskit_version": "0.40.0", - "timestamp": 1692696374.581373 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020677", - "qiskit_version": "0.41.0", - "timestamp": 1692696374.581377 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020708", - "qiskit_version": "0.41.0", - "timestamp": 1692696374.581381 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044343", - "qiskit_version": "0.41.1", - "timestamp": 1692696374.581384 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044250", - "qiskit_version": "0.41.1", - "timestamp": 1692696374.581387 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044381", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696374.58139 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547585", - "qiskit_version": "0.44.1", - "timestamp": 1695720203.690312 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545041233", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534979.185463 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757652", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139280.013289 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757652", - "qiskit_version": "0.44.2", - "timestamp": 1698138842.504875 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757652", - "qiskit_version": "", - "timestamp": 1698139357.256973 - } - ], - "stars": 21, - "group": "other" - }, - "26": { - "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 \"Quantum HF/DFT-embedding algorithms for electronic structure calculations: Scaling up to complex molecular systems\" (J. Chem. Phys. 154, 114105)", - "licence": "Apache License 2.0", - "contact_info": "oss@zurich.ibm.com", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "Algorithms", - "Chemistry" - ], - "created_at": 1685540348.208874, - "updated_at": 1685540348.208879, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754872", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139166.590289 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754872", - "qiskit_version": "0.44.2", - "timestamp": 1698138755.839153 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754872", - "qiskit_version": "", - "timestamp": 1698139207.103735 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936781104", - "package_commit_hash": "0b51250e219ca303654fc28a318c21366584ccd3", - "qiskit_version": "unknown", - "timestamp": 1692695570.725693 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936781104", - "qiskit_version": "unknown", - "timestamp": 1692695570.725697 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936781104", - "qiskit_version": "unknown", - "timestamp": 1692695570.546512 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543007", - "qiskit_version": "0.44.1", - "timestamp": 1695719518.259935 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545036237", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534308.766613 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754872", - "qiskit_version": "0.44.2", - "timestamp": 1698138755.839153 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754872", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139166.590289 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624754872", - "qiskit_version": "", - "timestamp": 1698139207.103735 - } - ], - "stars": 4, - "group": "applications" - }, - "27": { - "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": [ - "Physics" - ], - "created_at": 1678827878.841977, - "updated_at": 1678827878.841978, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758109", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140505.700804 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758109", - "qiskit_version": "0.44.2", - "timestamp": 1698141364.594495 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758109", - "qiskit_version": "0.44.2", - "timestamp": 1698140061.279459 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758109", - "qiskit_version": "0.39.0", - "timestamp": 1698141361.771747 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225482", - "qiskit_version": "0.39.0", - "timestamp": 1692699449.223752 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953307", - "qiskit_version": "0.39.2", - "timestamp": 1692699449.223756 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704942", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692699449.22376 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704855", - "qiskit_version": "0.39.4", - "timestamp": 1692699449.223763 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629269", - "qiskit_version": "0.39.5", - "timestamp": 1692699449.223767 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485085", - "qiskit_version": "0.40.0", - "timestamp": 1692699449.223771 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023417", - "qiskit_version": "0.41.0", - "timestamp": 1692699449.223774 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047359", - "qiskit_version": "0.41.1", - "timestamp": 1692699449.223778 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047438", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692699449.223782 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543088", - "qiskit_version": "0.44.1", - "timestamp": 1695720270.168092 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545037181", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535054.910321 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758109", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140505.700804 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758109", - "qiskit_version": "0.44.2", - "timestamp": 1698140061.279459 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758109", - "qiskit_version": "0.39.0", - "timestamp": 1698141361.771747 - } - ], - "stars": 39, - "group": "applications" - }, - "28": { - "name": "Qiskit Metal", - "url": "https://github.com/qiskit-community/qiskit-metal", - "description": "Qiskit Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.", - "licence": "Apache 2.0", - "labels": [ - "Hardware" - ], - "created_at": 1628883441.119202, - "updated_at": 1628883441.119205, - "tier": "Community", - "website": "https://qiskit.org/ecosystem/metal/", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 251, - "group": "other" - }, - "29": { - "name": "Qiskit IonQ Provider", - "url": "https://github.com/Qiskit-Partners/qiskit-ionq", - "description": "This project contains a provider that allows access to IonQ ion trap quantum systems.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "Provider", - "Partner" - ], - "created_at": 1670427446.011674, - "updated_at": 1670427446.011675, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759628", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139929.64452 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759628", - "qiskit_version": "0.44.2", - "timestamp": 1698139966.086275 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759628", - "qiskit_version": "0.44.2", - "timestamp": 1698139477.751113 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759628", - "qiskit_version": "", - "timestamp": 1698139964.592461 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-test.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "python setup.py test" - ], - "styles_check_command": [ - "pylint -rn --rcfile=./.pylintrc qiskit_ionq test" - ], - "coverages_check_command": [] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621", - "qiskit_version": "0.37.1", - "timestamp": 1692696164.80215 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121621", - "qiskit_version": "0.37.1", - "timestamp": 1692696164.802153 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921277", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696164.802156 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639640", - "qiskit_version": "0.38.0", - "timestamp": 1692696164.802159 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639611", - "qiskit_version": "0.38.0", - "timestamp": 1692696164.802162 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226131", - "qiskit_version": "0.39.0", - "timestamp": 1692696164.802165 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226160", - "qiskit_version": "0.39.0", - "timestamp": 1692696164.802168 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954337", - "qiskit_version": "0.39.2", - "timestamp": 1692696164.80217 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954292", - "qiskit_version": "0.39.2", - "timestamp": 1692696164.802173 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097663", - "qiskit_version": "0.39.4", - "timestamp": 1692696164.802176 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097776", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865", - "qiskit_version": "0.40.0", - "timestamp": 1692696164.802179 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628097716", - "qiskit_version": "0.39.4", - "timestamp": 1692696164.802182 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545781", - "qiskit_version": "0.44.1", - "timestamp": 1695719750.502959 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545039123", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534418.5786 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759628", - "qiskit_version": "0.44.2", - "timestamp": 1698139477.751113 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759628", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139929.64452 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759628", - "qiskit_version": "", - "timestamp": 1698139964.592461 - } - ], - "stars": 35, - "group": "provider" - }, - "30": { - "name": "Qiskit Finance", - "url": "https://github.com/qiskit-community/qiskit-finance", - "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.", - "licence": "Apache 2.0", - "labels": [ - "Algorithms", - "Finance" - ], - "created_at": 1636403009.368607, - "updated_at": 1636403009.368609, - "tier": "Community", - "website": "https://qiskit.org/ecosystem/finance/", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 191, - "group": "applications" - }, - "31": { - "name": "Qiskit Cold Atom", - "url": "https://github.com/qiskit-community/qiskit-cold-atom", - "description": "Qiskit-cold-atom builds on core Qiskit functionalities to integrate programmable quantum simulators of trapped cold atoms in a gate- and circuit-based framework. The project includes a provider and simulators for fermionic and spin-based systems.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "Provider", - "Physics" - ], - "created_at": 1678827878.507531, - "updated_at": 1678827878.507532, - "tier": "Community", - "website": "https://qiskit-community.github.io/qiskit-cold-atom/", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755140", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139244.826846 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755140", - "qiskit_version": "0.44.2", - "timestamp": 1698139310.496177 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755140", - "qiskit_version": "0.44.2", - "timestamp": 1698138792.66062 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755140", - "qiskit_version": "", - "timestamp": 1698139309.354068 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [ - "requirements-dev.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "stestr run" - ], - "styles_check_command": [ - "pylint -rn -j 0 --rcfile=./.pylintrc qiskit_cold_atom/ test/" - ], - "coverages_check_command": [] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773", - "qiskit_version": "0.37.1", - "timestamp": 1692695880.437201 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121773", - "qiskit_version": "0.37.1", - "timestamp": 1692695880.437204 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920905", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692695880.437208 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639328", - "qiskit_version": "0.38.0", - "timestamp": 1692695880.437211 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639358", - "qiskit_version": "0.38.0", - "timestamp": 1692695880.437214 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225772", - "qiskit_version": "0.39.0", - "timestamp": 1692695880.437217 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225754", - "qiskit_version": "0.39.0", - "timestamp": 1692695880.437221 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953898", - "qiskit_version": "0.39.2", - "timestamp": 1692695880.437224 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953919", - "qiskit_version": "0.39.2", - "timestamp": 1692695880.437227 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705694", - "qiskit_version": "0.40.0", - "timestamp": 1692695880.43723 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705604", - "qiskit_version": "0.39.4", - "timestamp": 1692695880.437234 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705583", - "qiskit_version": "0.39.4", - "timestamp": 1692695880.437237 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630594", - "qiskit_version": "0.39.5", - "timestamp": 1692695880.43724 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630688", - "qiskit_version": "0.39.5", - "timestamp": 1692695880.437243 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485912", - "qiskit_version": "0.40.0", - "timestamp": 1692695880.437246 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485977", - "qiskit_version": "0.40.0", - "timestamp": 1692695880.437249 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024143", - "qiskit_version": "0.41.0", - "timestamp": 1692695880.437252 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024081", - "qiskit_version": "0.41.0", - "timestamp": 1692695880.437255 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048649", - "qiskit_version": "0.41.1", - "timestamp": 1692695880.437259 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048578", - "qiskit_version": "0.41.1", - "timestamp": 1692695880.437262 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048688", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692695880.437265 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310545543", - "qiskit_version": "0.44.1", - "timestamp": 1695719577.688871 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545041837", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535062.255855 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755140", - "qiskit_version": "0.44.2", - "timestamp": 1698138792.66062 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755140", - "qiskit_version": "", - "timestamp": 1698139309.354068 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755140", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139244.826846 - } - ], - "stars": 25, - "group": "provider" - }, - "32": { - "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 the Medium blog post \"Distributed Quantum Computing: A path to large scale quantum computing\". 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\" (doi: 10.1109/TQE.2021.3057908). 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": [ - "Circuit", - "Converter" - ], - "created_at": 1678827878.415704, - "updated_at": 1678827878.415704, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758932", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698139373.192186 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758932", - "qiskit_version": "unknown", - "timestamp": 1698139326.457491 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758932", - "qiskit_version": "unknown", - "timestamp": 1698139420.272835 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758932", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698139373.192186 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758932", - "qiskit_version": "unknown", - "timestamp": 1698139420.272835 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758932", - "qiskit_version": "unknown", - "timestamp": 1698139326.457491 - } - ], - "stars": 6, - "group": "other" - }, - "33": { - "name": "dense-ev", - "url": "https://github.com/atlytle/dense-ev", - "description": "Implements expectation value measurements in Qiskit using optimal dense grouping. Dense-ev provides an improvement of ~2^m over naive grouping and (3/2)^m over qubit-wise commuting groups. Based on arXiv:2305.11847.", - "licence": "Apache License 2.0", - "contact_info": "atlytle@gmail.com", - "alternatives": "_No response_", - "affiliations": "University of Illinois at Urbana-Champaign", - "labels": [ - "Paper implementation" - ], - "tier": "Community", - "website": "https://github.com/atlytle/dense-ev", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756014", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139299.031588 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756014", - "qiskit_version": "0.44.2", - "timestamp": 1698139369.856249 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756014", - "qiskit_version": "0.44.2", - "timestamp": 1698138795.242192 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.42.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756014", - "qiskit_version": "0.42.1", - "timestamp": 1698139366.840475 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544727", - "qiskit_version": "0.44.1", - "timestamp": 1695719548.24707 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545036746", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534479.365706 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756014", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139299.031588 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756014", - "qiskit_version": "0.44.2", - "timestamp": 1698138795.242192 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.42.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756014", - "qiskit_version": "0.42.1", - "timestamp": 1698139366.840475 - } - ], - "stars": 5, - "group": "other" - }, - "34": { - "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", - "Julia" - ], - "created_at": 1673642669.650459, - "updated_at": 1673642669.650464, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 8, - "group": "applications" - }, - "35": { - "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": [ - "Chemistry" - ], - "created_at": 1678827878.723733, - "updated_at": 1678827878.723734, - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757853", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139363.687709 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757853", - "qiskit_version": "0.44.2", - "timestamp": 1698139410.110867 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757853", - "qiskit_version": "0.44.2", - "timestamp": 1698138896.88371 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757853", - "qiskit_version": "", - "timestamp": 1698139406.111886 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705234", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696201.987688 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705147", - "qiskit_version": "0.39.4", - "timestamp": 1692696201.987691 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705182", - "qiskit_version": "0.39.4", - "timestamp": 1692696201.987694 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629837", - "qiskit_version": "0.39.5", - "timestamp": 1692696201.987697 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0rc1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994629761", - "qiskit_version": "0.40.0rc1", - "timestamp": 1692696201.9877 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485540", - "qiskit_version": "0.40.0", - "timestamp": 1692696201.987704 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485468", - "qiskit_version": "0.40.0", - "timestamp": 1692696201.987707 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023779", - "qiskit_version": "0.41.0", - "timestamp": 1692696201.98771 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023690", - "qiskit_version": "0.41.0", - "timestamp": 1692696201.987713 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047797", - "qiskit_version": "0.41.1", - "timestamp": 1692696201.987716 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047863", - "qiskit_version": "0.41.1", - "timestamp": 1692696201.987719 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414047970", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696201.987722 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546314", - "qiskit_version": "0.44.1", - "timestamp": 1695720038.087814 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545040475", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534806.265146 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757853", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139363.687709 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757853", - "qiskit_version": "", - "timestamp": 1698139406.111886 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757853", - "qiskit_version": "0.44.2", - "timestamp": 1698138896.88371 - } - ], - "stars": 15, - "group": "applications" - }, - "36": { - "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": [ - "Hardware" - ], - "created_at": 1662470654.437653, - "updated_at": 1662470654.437655, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn pyEPR" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": true, - "historical_test_results": [], - "stars": 145, - "group": "other" - }, - "37": { - "name": "qtcodes", - "url": "https://github.com/yaleqc/qtcodes", - "description": "Qiskit Topological Codes.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "Error correction" - ], - "created_at": 1678827878.827901, - "updated_at": 1678827878.827902, - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759376", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139927.368922 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759376", - "qiskit_version": "0.44.2", - "timestamp": 1698139980.55468 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759376", - "qiskit_version": "0.44.2", - "timestamp": 1698139462.142579 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759376", - "qiskit_version": "0.44.2", - "timestamp": 1698139977.613103 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint", - "numpy", - "matplotlib>=3.3.0", - "retworkx>=0.10.0", - "tqdm", - "pylatexenc", - "IPython", - "mypy", - "black", - "pytest" - ], - "debian_dependencies": [], - "tests_command": [ - "python -m unittest" - ], - "styles_check_command": [ - "pylint -rn qtcodes" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696030.686474 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692696030.686478 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696030.686481 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269", - "qiskit_version": "0.37.0", - "timestamp": 1692696030.686485 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548269", - "qiskit_version": "0.37.0", - "timestamp": 1692696030.686489 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068", - "qiskit_version": "0.37.1", - "timestamp": 1692696030.686493 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121068", - "qiskit_version": "0.37.1", - "timestamp": 1692696030.686497 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919232", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696030.686501 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919153", - "qiskit_version": "0.38.0", - "timestamp": 1692696030.686505 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637904", - "qiskit_version": "0.38.0", - "timestamp": 1692696030.686508 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223904", - "qiskit_version": "0.39.0", - "timestamp": 1692696030.686512 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223902", - "qiskit_version": "0.39.0", - "timestamp": 1692696030.686516 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950844", - "qiskit_version": "0.39.2", - "timestamp": 1692696030.68652 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950941", - "qiskit_version": "0.39.2", - "timestamp": 1692696030.686523 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701356", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696030.686527 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701333", - "qiskit_version": "0.39.4", - "timestamp": 1692696030.68653 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701250", - "qiskit_version": "0.39.4", - "timestamp": 1692696030.686534 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625932", - "qiskit_version": "0.39.5", - "timestamp": 1692696030.686538 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481542", - "qiskit_version": "0.40.0", - "timestamp": 1692696030.686541 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481466", - "qiskit_version": "0.40.0", - "timestamp": 1692696030.686544 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020538", - "qiskit_version": "0.41.0", - "timestamp": 1692696030.686548 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020492", - "qiskit_version": "0.41.0", - "timestamp": 1692696030.686552 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044129", - "qiskit_version": "0.41.1", - "timestamp": 1692696030.686556 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044195", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696030.68656 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044094", - "qiskit_version": "0.41.1", - "timestamp": 1692696030.686563 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546636", - "qiskit_version": "0.44.1", - "timestamp": 1695720496.823857 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546636", - "qiskit_version": "0.44.1", - "timestamp": 1695720074.276104 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545039669", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534586.863231 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759376", - "qiskit_version": "0.44.2", - "timestamp": 1698139977.613103 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759376", - "qiskit_version": "0.44.2", - "timestamp": 1698139462.142579 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759376", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139927.368922 - } - ], - "stars": 83, - "group": "other" - }, - "38": { - "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.", - "labels": [ - "Circuit", - "OpenQASM", - "Converter", - "Software development kit" - ], - "created_at": 1690263743.561744, - "updated_at": 1690263743.56175, - "tier": "Community", - "website": "https://qbraid.com", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759838", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698139694.751579 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5924783548", - "qiskit_version": "0.44.1", - "timestamp": 1692696381.802882 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759838", - "qiskit_version": "unknown", - "timestamp": 1698139592.163486 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759838", - "qiskit_version": "unknown", - "timestamp": 1698139798.589742 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936779503", - "package_commit_hash": "0b51250e219ca303654fc28a318c21366584ccd3", - "qiskit_version": "0.45.0", - "timestamp": 1692696381.8029 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936779503", - "qiskit_version": "0.44.1", - "timestamp": 1692696381.802904 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936779503", - "qiskit_version": "0.44.1", - "timestamp": 1692696381.631434 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759838", - "qiskit_version": "unknown", - "timestamp": 1698139798.589742 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759838", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698139694.751579 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759838", - "qiskit_version": "unknown", - "timestamp": 1698139592.163486 - } - ], - "stars": 42, - "group": "other" - }, - "39": { - "name": "Quantum Prototype Template", - "url": "https://github.com/qiskit-community/quantum-prototype-template", - "description": "A template repository for generating new quantum prototypes based on Qiskit.", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "Qiskit Community", - "labels": [ - "Productivity" - ], - "tier": "Community", - "website": "https://github.com/qiskit-community/quantum-prototype-template", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759502", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139814.918496 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759502", - "qiskit_version": "0.44.2", - "timestamp": 1698139846.190448 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759502", - "qiskit_version": "0.44.2", - "timestamp": 1698139442.025867 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759502", - "qiskit_version": "0.44.2", - "timestamp": 1698139842.497136 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547908", - "qiskit_version": "0.44.1", - "timestamp": 1695720212.075357 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547908", - "qiskit_version": "0.44.1", - "timestamp": 1695720562.501782 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545036052", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534312.675789 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759502", - "qiskit_version": "0.44.2", - "timestamp": 1698139842.497136 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759502", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139814.918496 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759502", - "qiskit_version": "0.44.2", - "timestamp": 1698139442.025867 - } - ], - "stars": 35, - "group": "other" - }, - "40": { - "name": "SSVQE", - "url": "https://github.com/JoelHBierman/SSVQE", - "description": "The SSVQE algorithm (arXiv:1810.09434) is a generalization of VQE to find low-lying eigenstates of a Hermitian operator. This specific implementation of SSVQE carries out one optimization procedure using weights.", - "licence": "Apache License 2.0", - "contact_info": "joel.bierman@duke.edu", - "alternatives": "_No response_", - "affiliations": "Duke University", - "labels": [ - "Algorithms", - "Chemistry" - ], - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759281", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140031.483355 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759281", - "qiskit_version": "0.44.2", - "timestamp": 1698140140.619623 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759281", - "qiskit_version": "0.44.2", - "timestamp": 1698139509.437624 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759281", - "qiskit_version": "0.44.2", - "timestamp": 1698140137.914579 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546097", - "qiskit_version": "0.44.1", - "timestamp": 1695720580.615558 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546097", - "qiskit_version": "0.44.1", - "timestamp": 1695720033.374617 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545042350", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535130.366886 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759281", - "qiskit_version": "0.44.2", - "timestamp": 1698140137.914579 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759281", - "qiskit_version": "0.44.2", - "timestamp": 1698139509.437624 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759281", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140031.483355 - } - ], - "stars": 0, - "group": "applications" - }, - "41": { - "name": "Variational Quantum Linear Solver 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": [ - "Algorithms", - "Optimization" - ], - "created_at": 1683906067.55753, - "updated_at": 1683906067.557535, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756179", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698138861.890482 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547397", - "qiskit_version": "0.44.1", - "timestamp": 1695720615.379427 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756179", - "qiskit_version": "unknown", - "timestamp": 1698138795.426884 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756179", - "qiskit_version": "unknown", - "timestamp": 1698138928.234918 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936779850", - "qiskit_version": "", - "timestamp": 1692695887.580608 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547397", - "qiskit_version": "0.44.1", - "timestamp": 1695720161.656866 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547397", - "package_commit_hash": "6e80e89e18da2691a86d4e2050db2e5479043b16", - "qiskit_version": "0.45.0", - "timestamp": 1695720532.945335 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310547397", - "qiskit_version": "0.44.1", - "timestamp": 1695720614.196099 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756179", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698138861.890482 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756179", - "qiskit_version": "unknown", - "timestamp": 1698138928.234918 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756179", - "qiskit_version": "unknown", - "timestamp": 1698138795.426884 - } - ], - "stars": 4, - "group": "applications" - }, - "42": { - "name": "qlasskit", - "url": "https://github.com/dakk/qlasskit", - "description": "Qlasskit is a Python library that allows quantum developers to write classical algorithms in pure Python and translate them into quantum circuits.", - "licence": "Apache License 2.0", - "contact_info": "gessadavide@gmail.com", - "alternatives": "_No response_", - "affiliations": "The project is partially funded by the UnitaryFund microgrant.", - "labels": [ - "Converter" - ], - "tier": "Community", - "website": "https://dakk.github.com/qlasskit", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [], - "stars": 22, - "group": "other" - }, - "43": { - "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": [ - "Optimization", - "Prototype" - ], - "created_at": 1678827878.909912, - "updated_at": 1678827878.909913, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755381", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139389.769994 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755381", - "qiskit_version": "0.44.2", - "timestamp": 1698139535.186106 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755381", - "qiskit_version": "0.44.2", - "timestamp": 1698138865.21439 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755381", - "qiskit_version": "0.44.2", - "timestamp": 1698139530.625404 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "pip check", - "python -m pytest" - ], - "styles_check_command": [ - "black ." - ], - "coverages_check_command": [] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584", - "qiskit_version": "0.37.1", - "timestamp": 1692696456.271809 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121584", - "qiskit_version": "0.37.1", - "timestamp": 1692696456.271812 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921127", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696456.271816 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639520", - "qiskit_version": "0.38.0", - "timestamp": 1692696456.271819 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639517", - "qiskit_version": "0.38.0", - "timestamp": 1692696456.271822 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226033", - "qiskit_version": "0.39.0", - "timestamp": 1692696456.271825 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225981", - "qiskit_version": "0.39.0", - "timestamp": 1692696456.271828 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954179", - "qiskit_version": "0.39.2", - "timestamp": 1692696456.271832 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954205", - "qiskit_version": "0.39.2", - "timestamp": 1692696456.271834 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705929", - "qiskit_version": "0.39.4", - "timestamp": 1692696456.271837 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705953", - "qiskit_version": "0.39.4", - "timestamp": 1692696456.27184 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705973", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696456.271843 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631129", - "qiskit_version": "0.39.5", - "timestamp": 1692696456.271846 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631163", - "qiskit_version": "0.39.5", - "timestamp": 1692696456.271849 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486294", - "qiskit_version": "0.40.0", - "timestamp": 1692696456.271851 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486355", - "qiskit_version": "0.40.0", - "timestamp": 1692696456.271854 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024475", - "qiskit_version": "0.41.0", - "timestamp": 1692696456.271857 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024540", - "qiskit_version": "0.41.0", - "timestamp": 1692696456.27186 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049043", - "qiskit_version": "0.41.1", - "timestamp": 1692696456.271863 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049127", - "qiskit_version": "0.41.1", - "timestamp": 1692696456.271866 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049192", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696456.271869 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/5936782681", - "qiskit_version": "", - "timestamp": 1692696456.271877 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546496", - "qiskit_version": "0.44.1", - "timestamp": 1695720112.748683 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546496", - "qiskit_version": "0.44.1", - "timestamp": 1695720573.098305 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545036958", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534595.611115 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755381", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139389.769994 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755381", - "qiskit_version": "0.44.2", - "timestamp": 1698139530.625404 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755381", - "qiskit_version": "0.44.2", - "timestamp": 1698138865.21439 - } - ], - "stars": 26, - "group": "applications" - }, - "44": { - "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", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757356", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698141541.05708 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757356", - "qiskit_version": "0.44.2", - "timestamp": 1698142835.491791 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757356", - "qiskit_version": "0.44.2", - "timestamp": 1698140032.534717 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757356", - "qiskit_version": "0.44.2", - "timestamp": 1698142834.361218 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt", - "dev_requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint", - "qiskit" - ], - "debian_dependencies": [], - "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" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692700417.598947 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449", - "qiskit_version": "0.36.2", - "timestamp": 1692700417.598951 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548449", - "qiskit_version": "0.36.2", - "timestamp": 1692700417.598954 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261", - "qiskit_version": "0.37.1", - "timestamp": 1692700417.598957 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121261", - "qiskit_version": "0.37.1", - "timestamp": 1692700417.59896 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919750", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692700417.598964 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638345", - "qiskit_version": "0.38.0", - "timestamp": 1692700417.598967 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638304", - "qiskit_version": "0.38.0", - "timestamp": 1692700417.59897 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224255", - "qiskit_version": "0.39.0", - "timestamp": 1692700417.598973 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224230", - "qiskit_version": "0.39.0", - "timestamp": 1692700417.598976 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951515", - "qiskit_version": "0.39.2", - "timestamp": 1692700417.598979 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951564", - "qiskit_version": "0.39.2", - "timestamp": 1692700417.598983 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076129", - "qiskit_version": "unknown", - "timestamp": 1692700417.598986 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076183", - "qiskit_version": "unknown", - "timestamp": 1692700417.598989 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3739076243", - "package_commit_hash": "07e0a2fc79bada7c1fbf0594f4ad33934f70b7e2", - "qiskit_version": "unknown", - "timestamp": 1692700417.598993 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702596", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692700417.598996 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702443", - "qiskit_version": "0.39.4", - "timestamp": 1692700417.598999 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937702348", - "qiskit_version": "0.39.4", - "timestamp": 1692700417.599002 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626991", - "qiskit_version": "0.39.5", - "timestamp": 1692700417.599005 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994626957", - "qiskit_version": "0.39.5", - "timestamp": 1692700417.599008 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482306", - "qiskit_version": "0.40.0", - "timestamp": 1692700417.599011 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482198", - "qiskit_version": "0.40.0", - "timestamp": 1692700417.599014 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021293", - "qiskit_version": "0.41.0", - "timestamp": 1692700417.599017 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021201", - "qiskit_version": "0.41.0", - "timestamp": 1692700417.59902 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044770", - "qiskit_version": "0.41.1", - "timestamp": 1692700417.599023 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044858", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692700417.599027 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044812", - "qiskit_version": "0.41.1", - "timestamp": 1692700417.599029 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543400", - "qiskit_version": "0.44.1", - "timestamp": 1695725359.365808 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543400", - "qiskit_version": "0.44.1", - "timestamp": 1695721467.420674 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545036558", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697537050.499594 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757356", - "qiskit_version": "0.44.2", - "timestamp": 1698140032.534717 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757356", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698141541.05708 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624757356", - "qiskit_version": "0.44.2", - "timestamp": 1698142834.361218 - } - ], - "stars": 300, - "group": "other" - }, - "45": { - "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", - "labels": [ - "Productivity", - "Jupyter notebook" - ], - "created_at": 1688661859.080258, - "updated_at": 1688661859.080264, - "tier": "Community", - "website": "https://icekhan13.github.io/purplecaffeine/index.html", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755024", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139579.821144 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755024", - "qiskit_version": "0.44.2", - "timestamp": 1698139712.111132 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755024", - "qiskit_version": "0.44.2", - "timestamp": 1698138965.979135 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755024", - "qiskit_version": "0.44.2", - "timestamp": 1698139707.001367 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543781", - "qiskit_version": "0.44.1", - "timestamp": 1695719671.169195 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543781", - "qiskit_version": "0.44.1", - "timestamp": 1695720141.771474 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545035463", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534512.954835 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755024", - "qiskit_version": "0.44.2", - "timestamp": 1698139707.001367 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755024", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139579.821144 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755024", - "qiskit_version": "0.44.2", - "timestamp": 1698138965.979135 - } - ], - "stars": 6, - "group": "other" - }, - "46": { - "name": "qiskit-superstaq", - "url": "https://github.com/Infleqtion/client-superstaq/tree/main/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": [ - "Converter", - "Provider" - ], - "created_at": 1678827878.760089, - "updated_at": 1678827878.76009, - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1678827878.751285 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952", - "qiskit_version": "0.41.1", - "timestamp": 1678827878.760098 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952", - "qiskit_version": "0.41.1", - "timestamp": 1678827878.749304 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929", - "qiskit_version": "0.39.5", - "timestamp": 1678827878.751296 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": true, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt", - "dev-requirements.txt" - ], - "extra_dependencies": [ - "qiskit" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest . --ignore-glob=*_integration_test.py --ignore=examples/" - ], - "styles_check_command": [ - "pylint --rcfile=.pylintrc examples qiskit-superstaq" - ], - "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/" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1678827878.760048 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938222", - "qiskit_version": "0.36.2", - "timestamp": 1678827878.760053 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180919098", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1678827878.760056 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225637871", - "qiskit_version": "0.38.0", - "timestamp": 1678827878.760058 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368223849", - "qiskit_version": "0.39.0", - "timestamp": 1678827878.76006 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521950701", - "qiskit_version": "0.39.2", - "timestamp": 1678827878.760063 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881839693", - "qiskit_version": "0.36.2", - "timestamp": 1678827878.760065 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937700989", - "qiskit_version": "0.39.4", - "timestamp": 1678827878.760067 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701047", - "qiskit_version": "0.39.4", - "timestamp": 1678827878.76007 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937701165", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1678827878.760072 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994625755", - "qiskit_version": "0.39.5", - "timestamp": 1678827878.760074 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052481340", - "qiskit_version": "0.40.0", - "timestamp": 1678827878.760077 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231020376", - "qiskit_version": "0.41.0", - "timestamp": 1678827878.760079 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043929", - "qiskit_version": "0.39.5", - "timestamp": 1678827878.760081 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414044022", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1678827878.760083 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414043952", - "qiskit_version": "0.41.1", - "timestamp": 1678827878.749304 - } - ], - "group": "provider" - }, - "47": { - "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, - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 123, - "group": "other" - }, - "48": { - "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.", - "licence": "Apache License 2.0", - "contact_info": "simone.gasperini4@unibo.it", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "Quantum information", - "Circuit simulator" - ], - "created_at": 1680254616.930627, - "updated_at": 1680254616.930632, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758278", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139871.164533 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758278", - "qiskit_version": "0.44.2", - "timestamp": 1698139907.956674 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758278", - "qiskit_version": "0.44.2", - "timestamp": 1698139290.165491 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758278", - "qiskit_version": "", - "timestamp": 1698139905.013603 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.8", - "3.9", - "3.10" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "pytest -v --cov=qiskit_symb" - ], - "styles_check_command": [ - "pylint src/ tests/" - ], - "coverages_check_command": [] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544654", - "qiskit_version": "0.44.1", - "timestamp": 1695719577.739797 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545040071", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534656.045163 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758278", - "qiskit_version": "", - "timestamp": 1698139905.013603 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758278", - "qiskit_version": "0.44.2", - "timestamp": 1698139290.165491 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624758278", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139871.164533 - } - ], - "stars": 18, - "group": "other" - }, - "49": { - "name": "qiskit-qubit-reuse", - "url": "https://github.com/qiskit-community/qiskit-qubit-reuse", - "description": "A Qiskit transpiler stage plugin to enable qubit reuse via mid-circuit measurement and reset.", - "licence": "Apache License 2.0", - "contact_info": "_No response_", - "alternatives": "_No response_", - "affiliations": "IBM", - "labels": [ - "Paper implementation" - ], - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756682", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139117.37036 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756682", - "qiskit_version": "0.44.2", - "timestamp": 1698138743.534176 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756682", - "qiskit_version": "", - "timestamp": 1698139143.811313 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545037619", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534299.210143 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756682", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139117.37036 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756682", - "qiskit_version": "0.44.2", - "timestamp": 1698138743.534176 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756682", - "qiskit_version": "", - "timestamp": 1698139143.811313 - } - ], - "stars": 7, - "group": "transpiler_plugin" - }, - "50": { - "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", - "labels": [ - "Algorithms", - "Converter" - ], - "created_at": 1678827878.289276, - "updated_at": 1678827878.289277, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759004", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139934.982811 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759004", - "qiskit_version": "0.44.2", - "timestamp": 1698140016.960501 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759004", - "qiskit_version": "0.44.2", - "timestamp": 1698139428.766482 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.26.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759004", - "qiskit_version": "0.26.2", - "timestamp": 1698140012.59176 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "coverage", - "pylint" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn quantumcat tests" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692695925.156465 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.27.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2998938614", - "qiskit_version": "0.27.0", - "timestamp": 1692695925.156469 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920000", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692695925.156472 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638565", - "qiskit_version": "0.38.0", - "timestamp": 1692695925.156475 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224447", - "qiskit_version": "0.39.0", - "timestamp": 1692695925.156478 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521951857", - "qiskit_version": "0.39.2", - "timestamp": 1692695925.156481 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703088", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692695925.156484 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703035", - "qiskit_version": "0.39.4", - "timestamp": 1692695925.156487 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994627419", - "qiskit_version": "0.39.5", - "timestamp": 1692695925.15649 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052482715", - "qiskit_version": "0.40.0", - "timestamp": 1692695925.156493 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231021726", - "qiskit_version": "0.41.0", - "timestamp": 1692695925.156495 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.27.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045179", - "qiskit_version": "0.27.0", - "timestamp": 1692695925.156498 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045280", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692695925.156501 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414045216", - "qiskit_version": "0.41.1", - "timestamp": 1692695925.156504 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310543236", - "qiskit_version": "0.44.1", - "timestamp": 1695719611.662901 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545040896", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534898.812148 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.26.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759004", - "qiskit_version": "0.26.2", - "timestamp": 1698140012.59176 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759004", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139934.982811 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624759004", - "qiskit_version": "0.44.2", - "timestamp": 1698139428.766482 - } - ], - "stars": 23, - "group": "other" - }, - "51": { - "name": "Qiskit Optimization", - "url": "https://github.com/qiskit-community/qiskit-optimization", - "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.", - "licence": "Apache 2.0", - "labels": [ - "Algorithms", - "Optimization" - ], - "created_at": 1636403009.538761, - "updated_at": 1636403009.538763, - "tier": "Community", - "website": "https://qiskit.org/ecosystem/optimization", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 184, - "group": "applications" - }, - "52": { - "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": [ - "Machine learning" - ], - "created_at": 1678827878.611621, - "updated_at": 1678827878.611622, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760301", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140310.343271 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760301", - "qiskit_version": "0.44.2", - "timestamp": 1698139739.581536 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760301", - "qiskit_version": "0.38.0", - "timestamp": 1698140529.859718 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.6" - ] - }, - "dependencies_files": [ - "requirements.txt" - ], - "extra_dependencies": [ - "qiskit", - "coverage", - "pylint" - ], - "debian_dependencies": [], - "tests_command": [ - "pytest" - ], - "styles_check_command": [ - "pylint -rn torchquantum test" - ], - "coverages_check_command": [ - "coverage3 -m pytest", - "coverage3 report --fail-under=80" - ] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696419.921955 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.37.0", - "qiskit_version": "0.37.0", - "timestamp": 1692696419.921958 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.36.2", - "qiskit_version": "0.36.2", - "timestamp": 1692696419.921961 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602", - "qiskit_version": "0.37.0", - "timestamp": 1692696419.921964 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2617548602", - "qiskit_version": "0.37.0", - "timestamp": 1692696419.921968 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448", - "qiskit_version": "0.37.1", - "timestamp": 1692696419.921991 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121448", - "qiskit_version": "0.37.1", - "timestamp": 1692696419.921994 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920482", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696419.921998 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225638971", - "qiskit_version": "0.38.0", - "timestamp": 1692696419.922002 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.32.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3319733310", - "qiskit_version": "0.32.1", - "timestamp": 1692696419.922005 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224766", - "qiskit_version": "0.39.0", - "timestamp": 1692696419.922009 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368224775", - "qiskit_version": "0.39.0", - "timestamp": 1692696419.922012 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952548", - "qiskit_version": "0.39.2", - "timestamp": 1692696419.922015 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521952575", - "qiskit_version": "0.39.2", - "timestamp": 1692696419.922018 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937704035", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696419.922021 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703995", - "qiskit_version": "0.39.4", - "timestamp": 1692696419.922024 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937703922", - "qiskit_version": "0.39.4", - "timestamp": 1692696419.922027 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628138", - "qiskit_version": "0.39.5", - "timestamp": 1692696419.922031 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994628139", - "qiskit_version": "0.39.5", - "timestamp": 1692696419.922034 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483696", - "qiskit_version": "0.40.0", - "timestamp": 1692696419.922037 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052483765", - "qiskit_version": "0.40.0", - "timestamp": 1692696419.922041 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022339", - "qiskit_version": "0.41.0", - "timestamp": 1692696419.922044 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231022382", - "qiskit_version": "0.41.0", - "timestamp": 1692696419.922047 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046140", - "qiskit_version": "0.41.1", - "timestamp": 1692696419.92205 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414046155", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696419.922053 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546772", - "qiskit_version": "0.44.1", - "timestamp": 1695720297.058607 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545041987", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535414.315162 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760301", - "qiskit_version": "0.44.2", - "timestamp": 1698139739.581536 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760301", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140310.343271 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760301", - "qiskit_version": "0.38.0", - "timestamp": 1698140529.859718 - } - ], - "stars": 1052, - "group": "applications" - }, - "53": { - "name": "pytket-qiskit", - "url": "https://github.com/CQCL/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": [ - "Converter" - ], - "created_at": 1661869851.523229, - "updated_at": 1661869851.523229, - "tier": "Community", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755774", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139267.726312 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755774", - "qiskit_version": "0.44.2", - "timestamp": 1698139342.225252 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755774", - "qiskit_version": "0.44.2", - "timestamp": 1698138803.607878 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755774", - "qiskit_version": "0.44.2", - "timestamp": 1698139339.247834 - } - ], - "styles_results": [ - { - "passed": false, - "style_type": "pylint" - } - ], - "coverages_results": [ - { - "passed": false, - "coverage_type": "" - } - ], - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", - "qiskit_version": "-", - "timestamp": 1661869851.52322 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", - "package_commit_hash": "bab9d4568334d572dd14ffef3b35567bb81fbc2c", - "qiskit_version": "-", - "timestamp": 1661869851.523222 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "-", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2955002169", - "qiskit_version": "-", - "timestamp": 1661869851.522323 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544417", - "qiskit_version": "0.44.1", - "timestamp": 1695720172.006889 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310544417", - "qiskit_version": "0.44.1", - "timestamp": 1695719605.30811 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545035745", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697534347.122233 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755774", - "qiskit_version": "0.44.2", - "timestamp": 1698139339.247834 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755774", - "qiskit_version": "0.44.2", - "timestamp": 1698138803.607878 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624755774", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139267.726312 - } - ], - "stars": 8, - "group": "other" - }, - "54": { - "name": "qdao", - "url": "https://github.com/Zhaoyilunnn/qdao", - "description": "A lightweight framework to enable configurable memory consumption when simulating large quantum circuits.", - "licence": "Apache License 2.0", - "contact_info": "zyilun8@gmail.com", - "alternatives": "_No response_", - "affiliations": "Institute of Computing Technology, Chinese Academy of Sciences.", - "labels": [ - "Circuit simulator" - ], - "tier": "Community", - "tests_results": [ - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756404", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139218.799148 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756404", - "qiskit_version": "0.44.2", - "timestamp": 1698139289.995339 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756404", - "qiskit_version": "0.44.2", - "timestamp": 1698138792.464951 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756404", - "qiskit_version": "0.39.0", - "timestamp": 1698139288.791473 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310546962", - "qiskit_version": "0.44.1", - "timestamp": 1695720094.111367 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545041146", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535090.617846 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756404", - "qiskit_version": "0.44.2", - "timestamp": 1698138792.464951 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756404", - "qiskit_version": "0.39.0", - "timestamp": 1698139288.791473 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624756404", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698139218.799148 - } - ], - "stars": 7, - "group": "other" - }, - "55": { - "name": "quPython", - "url": "https://github.com/frankharkins/quPython", - "description": "Write quantum programs as Python functions, rather than separate circuit objects. Create higher-level quantum data types, and return measurement results as bool-like objects.", - "licence": "MIT license", - "contact_info": "frankharkins@hotmail.co.uk", - "alternatives": "_No response_", - "affiliations": "_No response_", - "labels": [ - "Circuit", - "Converter", - "Productivity" - ], - "tier": "Community", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": false, - "historical_test_results": [], - "group": "other" - } - }, - "Extensions": { - "0": { - "name": "qiskit-alt", - "url": "https://github.com/Qiskit-Extensions/qiskit-alt", - "description": "A Python package that uses a backend written in Julia to implement high performance features for standard Qiskit.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "Julia", - "Provider" - ], - "created_at": 1678827878.588404, - "updated_at": 1678827878.588404, - "tier": "Extensions", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760664", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140180.474971 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760664", - "qiskit_version": "0.44.2", - "timestamp": 1698139768.531675 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760664", - "qiskit_version": "", - "timestamp": 1698140224.315832 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "pytest -p no:warnings --pyargs test" - ], - "styles_check_command": [ - "pylint -rn src" - ], - "coverages_check_command": [] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702", - "qiskit_version": "0.37.1", - "timestamp": 1692696429.383227 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121702", - "qiskit_version": "0.37.1", - "timestamp": 1692696429.383231 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180920833", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696429.383235 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639231", - "qiskit_version": "0.38.0", - "timestamp": 1692696429.383238 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639249", - "qiskit_version": "0.38.0", - "timestamp": 1692696429.383242 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225683", - "qiskit_version": "0.39.0", - "timestamp": 1692696429.383246 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225703", - "qiskit_version": "0.39.0", - "timestamp": 1692696429.38325 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953654", - "qiskit_version": "0.39.2", - "timestamp": 1692696429.383253 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521953616", - "qiskit_version": "0.39.2", - "timestamp": 1692696429.383257 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3881842278", - "qiskit_version": "0.39.4", - "timestamp": 1692696429.383261 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705487", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696429.383264 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705437", - "qiskit_version": "0.39.4", - "timestamp": 1692696429.383268 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630330", - "qiskit_version": "0.39.5", - "timestamp": 1692696429.383272 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630381", - "qiskit_version": "0.39.5", - "timestamp": 1692696429.383276 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485690", - "qiskit_version": "0.40.0", - "timestamp": 1692696429.38328 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052485740", - "qiskit_version": "0.40.0", - "timestamp": 1692696429.383283 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023996", - "qiskit_version": "0.41.0", - "timestamp": 1692696429.383287 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231023911", - "qiskit_version": "0.41.0", - "timestamp": 1692696429.38329 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048422", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696429.383294 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048325", - "qiskit_version": "0.41.1", - "timestamp": 1692696429.383298 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310548203", - "qiskit_version": "0.44.1", - "timestamp": 1695720334.512771 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545042445", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535210.100717 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760664", - "qiskit_version": "0.44.2", - "timestamp": 1698139768.531675 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760664", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140180.474971 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760664", - "qiskit_version": "", - "timestamp": 1698140224.315832 - } - ], - "stars": 12, - "group": "other" - }, - "1": { - "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", - "Circuit" - ], - "created_at": 1670427445.884067, - "updated_at": 1670427445.884068, - "tier": "Extensions", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096614", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865", - "qiskit_version": "unknown", - "timestamp": 1670427445.882592 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096615", - "qiskit_version": "unknown", - "timestamp": 1670427445.884051 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096587", - "qiskit_version": "unknown", - "timestamp": 1670427445.884055 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 52, - "group": "other" - }, - "2": { - "name": "mthree", - "url": "https://github.com/Qiskit-Partners/mthree", - "description": "Matrix-free Measurement Mitigation (M3).", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "Error mitigation" - ], - "created_at": 1678827878.805163, - "updated_at": 1678827878.805164, - "tier": "Extensions", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760423", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698139754.783217 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987", - "qiskit_version": "0.41.0", - "timestamp": 1692696278.114188 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760423", - "qiskit_version": "unknown", - "timestamp": 1698139682.371153 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760423", - "qiskit_version": "unknown", - "timestamp": 1698139826.291417 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "pytest -p no:warnings --pyargs mthree/test" - ], - "styles_check_command": [ - "pylint -rn mthree" - ], - "coverages_check_command": [] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650", - "qiskit_version": "0.37.1", - "timestamp": 1692696278.114202 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121650", - "qiskit_version": "0.37.1", - "timestamp": 1692696278.114206 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921293", - "qiskit_version": "0.38.0", - "timestamp": 1692696278.114209 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921367", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696278.114212 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639689", - "qiskit_version": "0.38.0", - "timestamp": 1692696278.114216 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226321", - "qiskit_version": "0.39.0", - "timestamp": 1692696278.114219 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368226347", - "qiskit_version": "0.39.0", - "timestamp": 1692696278.114222 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3469025244", - "qiskit_version": "0.39.2", - "timestamp": 1692696278.114226 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954458", - "qiskit_version": "0.39.2", - "timestamp": 1692696278.114229 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706305", - "qiskit_version": "0.39.4", - "timestamp": 1692696278.114232 - }, - { - "passed": true, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706326", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696278.114236 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937706246", - "qiskit_version": "0.39.4", - "timestamp": 1692696278.114239 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631633", - "qiskit_version": "0.39.5", - "timestamp": 1692696278.114242 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994631645", - "qiskit_version": "0.39.5", - "timestamp": 1692696278.114245 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486650", - "qiskit_version": "0.40.0", - "timestamp": 1692696278.114249 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486607", - "qiskit_version": "0.40.0", - "timestamp": 1692696278.114252 - }, - { - "passed": true, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024987", - "qiskit_version": "0.41.0", - "timestamp": 1692696278.114255 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024915", - "qiskit_version": "0.41.0", - "timestamp": 1692696278.114258 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049585", - "qiskit_version": "0.41.1", - "timestamp": 1692696278.114262 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049662", - "qiskit_version": "0.41.1", - "timestamp": 1692696278.114265 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414049677", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696278.114268 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760423", - "qiskit_version": "unknown", - "timestamp": 1698139826.291417 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760423", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "unknown", - "timestamp": 1698139754.783217 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760423", - "qiskit_version": "unknown", - "timestamp": 1698139682.371153 - } - ], - "stars": 26, - "group": "other" - }, - "3": { - "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", - "Error correction", - "Circuit" - ], - "created_at": 1662992390.122591, - "updated_at": 1662992390.122597, - "tier": "Extensions", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 50, - "group": "other" - }, - "4": { - "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.", - "licence": "Apache License 2.0", - "contact_info": "blake.johnson@ibm.com", - "alternatives": "_No response_", - "labels": [ - "Software development kit" - ], - "created_at": 1670427445.627174, - "updated_at": 1670427445.627175, - "tier": "Extensions", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096882", - "package_commit_hash": "0df0d29fc44fb571e38530d20743a6e70e230865", - "qiskit_version": "unknown", - "timestamp": 1670427445.627157 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096844", - "qiskit_version": "unknown", - "timestamp": 1670427445.625689 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "unknown", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3628096823", - "qiskit_version": "unknown", - "timestamp": 1670427445.627162 - } - ], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 36, - "group": "other" - }, - "5": { - "name": "Qiskit Dynamics", - "url": "https://github.com/Qiskit-Extensions/qiskit-dynamics", - "description": "Dynamics is an open-source project for building, transforming, and solving time-dependent quantum systems in Qiskit.", - "licence": "Apache 2.0", - "labels": [ - "Physics" - ], - "created_at": 1628883441.121108, - "updated_at": 1628883441.121111, - "tier": "Extensions", - "website": "https://qiskit.org/ecosystem/dynamics/", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 79, - "group": "applications" - }, - "6": { - "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, - "tier": "Extensions", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "treon docs/ --threads 1" - ], - "styles_check_command": [ - "black --check docs" - ], - "coverages_check_command": [] - }, - "skip_tests": true, - "historical_test_results": [], - "stars": 33, - "group": "applications" - }, - "7": { - "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, - "tier": "Extensions", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 58, - "group": "other" - }, - "8": { - "name": "Entanglement Forging", - "url": "https://github.com/qiskit-community/prototype-entanglement-forging", - "description": "This module allows a user to simulate chemical and physical systems using a Variational Quantum Eigensolver (VQE) enhanced by Entanglement Forging. Entanglement Forging doubles the size of the system that can be exactly simulated on a fixed set of quantum bits.", - "licence": "Apache 2.0", - "contact_info": "", - "alternatives": "", - "labels": [ - "Prototype", - "Chemistry" - ], - "created_at": 1678827878.886831, - "updated_at": 1678827878.886832, - "tier": "Extensions", - "tests_results": [ - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760554", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140143.977066 - }, - { - "passed": true, - "test_type": "last passing version", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654673", - "qiskit_version": "0.38.0", - "timestamp": 1692696549.367459 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760554", - "qiskit_version": "0.44.2", - "timestamp": 1698139722.304594 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.35.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760554", - "qiskit_version": "0.35.0", - "timestamp": 1698140218.816217 - } - ], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [], - "extra_dependencies": [ - "qiskit>=0.35.0", - "qiskit_nature>=0.3.2", - "pyscf>=2.0.1", - "h5py>=3.6.0", - "pytest", - "black==22.3.0" - ], - "debian_dependencies": [], - "tests_command": [ - "python -m pytest tests" - ], - "styles_check_command": [ - "python -m black --check entanglement_forging tests" - ], - "coverages_check_command": [] - }, - "skip_tests": false, - "historical_test_results": [ - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121527", - "qiskit_version": "0.37.1", - "timestamp": 1692696549.367475 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.37.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/2824121527", - "qiskit_version": "0.37.1", - "timestamp": 1692696549.367479 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3039654669", - "qiskit_version": "0.38.0", - "timestamp": 1692696549.367483 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3180921013", - "package_commit_hash": "53e215c31cf3aea51a623dc22883ac92fe74d0b9", - "qiskit_version": "0.39.0", - "timestamp": 1692696549.367488 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.38.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3225639436", - "qiskit_version": "0.38.0", - "timestamp": 1692696549.367492 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3368225903", - "qiskit_version": "0.39.0", - "timestamp": 1692696549.367496 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3521954071", - "qiskit_version": "0.39.2", - "timestamp": 1692696549.367499 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705810", - "package_commit_hash": "af0b2220b75fd5cf3980576b1a31f9c4ceb9f99f", - "qiskit_version": "0.40.0", - "timestamp": 1692696549.367503 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.4", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3937705775", - "qiskit_version": "0.39.4", - "timestamp": 1692696549.367508 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.39.5", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/3994630976", - "qiskit_version": "0.39.5", - "timestamp": 1692696549.367512 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.40.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4052486140", - "qiskit_version": "0.40.0", - "timestamp": 1692696549.367515 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4231024378", - "qiskit_version": "0.41.0", - "timestamp": 1692696549.367519 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.41.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048905", - "qiskit_version": "0.41.1", - "timestamp": 1692696549.367523 - }, - { - "passed": true, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.36.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048792", - "qiskit_version": "0.36.0", - "timestamp": 1692696549.367526 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.43.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/4414048974", - "package_commit_hash": "3005806e48da61f235742bb365e251bce37452bd", - "qiskit_version": "0.43.0", - "timestamp": 1692696549.36753 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.1", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6310548071", - "qiskit_version": "0.44.1", - "timestamp": 1695720317.004089 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "0.45.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6545042596", - "package_commit_hash": "62467839e8d4e263465c42118414e6e5eca3c776", - "qiskit_version": "0.45.0", - "timestamp": 1697535273.464765 - }, - { - "passed": false, - "test_type": "development", - "package": "qiskit", - "package_version": "1.0.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760554", - "package_commit_hash": "fe3bffbc85a4fb57dc62ba04fa7f11bcefb5d75f", - "qiskit_version": "1.0.0", - "timestamp": 1698140143.977066 - }, - { - "passed": false, - "test_type": "standard", - "package": "qiskit", - "package_version": "0.35.0", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760554", - "qiskit_version": "0.35.0", - "timestamp": 1698140218.816217 - }, - { - "passed": false, - "test_type": "stable", - "package": "qiskit", - "package_version": "0.44.2", - "logs_link": "https://github.com/qiskit-community/ecosystem/actions/runs/6624760554", - "qiskit_version": "0.44.2", - "timestamp": 1698139722.304594 - } - ], - "stars": 30, - "group": "applications" - }, - "9": { - "name": "Qiskit Experiments", - "url": "https://github.com/Qiskit-Extensions/qiskit-experiments", - "description": "Qiskit Experiments is an open-source project for running characterizing, calibrating, and benchmarking experiments in Qiskit.", - "licence": "Apache 2.0", - "labels": [ - "Algorithms", - "Hardware" - ], - "created_at": 1661785302.25299, - "updated_at": 1661785302.25299, - "tier": "Extensions", - "website": "https://qiskit.org/ecosystem/experiments/", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 124, - "group": "other" - } - }, - "Main": { - "0": { - "name": "Qiskit Aer", - "url": "https://github.com/Qiskit/qiskit-aer", - "description": "Aer provides high-performance quantum computing simulators with realistic noise models.", - "licence": "Apache 2.0", - "labels": [ - "Circuit simulator" - ], - "created_at": 1636403010.377695, - "updated_at": 1636403010.377697, - "tier": "Main", - "website": "https://qiskit.org/ecosystem/aer", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 407, - "group": "other" - }, - "1": { - "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, - "tier": "Main", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 108, - "group": "provider" - }, - "2": { - "name": "Qiskit IBM Provider", - "url": "https://github.com/Qiskit/qiskit-ibm-provider", - "description": "This 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, - "tier": "Main", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "configuration": { - "language": { - "name": "python", - "versions": [ - "3.7" - ] - }, - "dependencies_files": [ - "requirements.txt", - "requirements-dev.txt" - ], - "extra_dependencies": [], - "debian_dependencies": [], - "tests_command": [ - "python -m unittest -v" - ], - "styles_check_command": [ - "pylint -rn --rcfile=./.pylintrc test" - ], - "coverages_check_command": [] - }, - "skip_tests": true, - "historical_test_results": [], - "stars": 69, - "group": "provider" - }, - "3": { - "name": "OpenQASM", - "url": "https://github.com/openqasm/openqasm", - "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, - "tier": "Main", - "website": "https://openqasm.com/", - "tests_results": [], - "styles_results": [], - "coverages_results": [], - "skip_tests": true, - "historical_test_results": [], - "stars": 1080, - "group": "other" - } - } -} \ No newline at end of file diff --git a/manager.py b/manager.py index b59e74d0e4..74291e0897 100644 --- a/manager.py +++ b/manager.py @@ -27,12 +27,7 @@ python manager.py members add_repo_2db --repo_link="https://github.com//" --repo_author="" ... ``` -6. Recompile members. -```shell -python manager.py members recompile" -``` - -7. Build website. +6. Build website. ```shell python manager.py website build_website" ``` diff --git a/tests/daos/test_dao.py b/tests/daos/test_dao.py index fc6440e086..b8a87d04aa 100644 --- a/tests/daos/test_dao.py +++ b/tests/daos/test_dao.py @@ -1,9 +1,7 @@ """Tests for entities.""" import os -import shutil import json from unittest import TestCase -from pathlib import Path from ecosystem.daos import DAO from ecosystem.models import TestResult, TestType, Tier @@ -29,27 +27,10 @@ class TestDao(TestCase): def setUp(self) -> None: self.path = "../resources" - self.members_path = "{}/members.json".format(self.path) self.labels_path = "{}/labels.json".format(self.path) - self._delete_members_json() - self._create_dummy_labels_json() - if not os.path.exists(self.path): - os.makedirs(self.path) - - def tearDown(self) -> None: - self._delete_members_json() - - def _delete_members_json(self): - """Deletes database file. - Function: Dao - -> delete - """ - if os.path.exists(self.members_path): - os.remove(self.members_path) - if os.path.exists(self.path + "/members"): - shutil.rmtree(self.path + "/members") if not os.path.exists(self.path): os.makedirs(self.path) + self._create_dummy_labels_json() def _delete_labels_json(self): """Deletes labels file. @@ -63,7 +44,6 @@ def _delete_labels_json(self): def test_start_update(self): """Test update start for repo.""" - self._delete_members_json() main_repo = get_main_repo() dao = DAO(self.path) dao.write(main_repo) @@ -77,8 +57,6 @@ def test_start_update(self): def test_repository_insert_and_delete(self): """Tests repository.""" - self._delete_members_json() - main_repo = get_main_repo() dao = DAO(self.path) @@ -95,7 +73,6 @@ def test_repository_insert_and_delete(self): def test_latest_results(self): """Tests append of latest passed test results.""" - self._delete_members_json() dao = DAO(self.path) main_repo = get_main_repo() dao.write(main_repo) @@ -185,7 +162,6 @@ def test_add_test_result(self): Dao -> add_repo_test_result """ - self._delete_members_json() dao = DAO(self.path) main_repo = get_main_repo() @@ -296,7 +272,6 @@ def test_add_test_result(self): def test_add_test_result_order(self): """Test order of test results.""" - self._delete_members_json() dao = DAO(self.path) main_repo = get_main_repo() @@ -335,27 +310,6 @@ def test_add_test_result_order(self): self.assertEqual(test_results[1].test_type, TestType.STABLE_COMPATIBLE) self.assertEqual(test_results[2].test_type, TestType.STANDARD) - def test_compile_json(self): - """ - Recompiles the JSON file, then checks it matches the read data. - """ - self._delete_members_json() - dao = DAO(self.path) - - # Dump JSON file - dao.compile_json() - - # Open and check 1:1 correspondence - repo_list = dao.storage.read().values() - with open(Path(self.path, "members.json")) as file: - dumped_data = json.loads(file.read()) - - for tier in dumped_data.values(): - for repo in tier.values(): - self.assertIn(repo_list, Repository.from_dict(repo)) - for repo in repo_list: - self.assertIn(dumped_data[repo.tier].values(), repo.to_dict()) - def assertLabelsFile(self, result): # pylint: disable=invalid-name """Asserts the content of labels.json matches the result dict""" with open(self.labels_path, "r") as labels_file: diff --git a/tests/test_cli.py b/tests/test_cli.py index d4f1b43005..3241d29022 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -70,8 +70,6 @@ class TestCli(TestCase): def setUp(self) -> None: self.path = "../resources" - self.members_path = "{}/members.json".format(self.path) - self._delete_members_json() if not os.path.exists(self.path): os.makedirs(self.path) self.current_dir = os.path.dirname(os.path.abspath(__file__)) @@ -84,16 +82,6 @@ def setUp(self) -> None: ) as issue_body_file: self.issue_body_2 = issue_body_file.read() - def tearDown(self) -> None: - self._delete_members_json() - - def _delete_members_json(self): - """Deletes database file.""" - if os.path.exists(self.members_path): - os.remove(self.members_path) - if not os.path.exists(self.path): - os.makedirs(self.path) - def test_build_website(self): """Test the website builder function.""" cli_website = CliWebsite(root_path=f"{os.path.abspath(os.getcwd())}/../") @@ -201,7 +189,6 @@ def test_dispatch_repository(self): def test_update_badges(self): """Tests creating badges.""" - self._delete_members_json() commu_success = get_community_repo() commu_failed = get_community_fail_repo() diff --git a/tests/test_members_file.py b/tests/test_members_file.py deleted file mode 100644 index 4e39c8c68f..0000000000 --- a/tests/test_members_file.py +++ /dev/null @@ -1,37 +0,0 @@ -"""Tests for memebers json file.""" -import json -import os -from unittest import TestCase - -from ecosystem.daos import DAO -from ecosystem.models import Tier -from ecosystem.models.repository import Repository - - -class TestMembersJson(TestCase): - """Tests for members file.""" - - def setUp(self) -> None: - current_directory = os.path.dirname(os.path.abspath(__file__)) - self.path = "{}/../ecosystem/resources".format(current_directory) - self.members_path = "{}/members.json".format(self.path) - self.dao = DAO(self.path) - - def test_members_json(self): - """Tests members json file for correctness.""" - self.assertTrue(os.path.exists(self.members_path)) - with open(self.members_path, "r") as members_file: - members_data = json.load(members_file) - self.assertIsInstance(members_data, dict) - - def test_deserialize_to_repositories(self): - """Tests members json deserialization.""" - community_repos = self.dao.get_repos_by_tier(Tier.COMMUNITY) - self.assertTrue(len(community_repos) > 0) - for repo in community_repos: - self.assertIsInstance(repo, Repository) - self.assertIn(repo.skip_tests, [True, False, None]) - for result in repo.tests_results: - self.assertIsNotNone(result.package) - self.assertIsNotNone(result.package_version) - self.assertEqual(result.package_version, result.qiskit_version)