Skip to content

Commit

Permalink
Drop support for Valkmusa (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
freetonik authored Nov 5, 2024
1 parent d4d3b0f commit 393e786
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 363 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

Version 15.2
============

* Drop support for Valkmusa architecture. `#140 <https://github.com/iqm-finland/qiskit-on-iqm/pull/140>`_

Version 15.1
============

Expand Down
52 changes: 0 additions & 52 deletions examples/demo_valkmusa.py

This file was deleted.

1 change: 0 additions & 1 deletion src/iqm/cirq_iqm/devices/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@
from .apollo import Apollo
from .iqm_device import IQMDevice
from .iqm_device_metadata import IQMDeviceMetadata
from .valkmusa import Valkmusa
113 changes: 0 additions & 113 deletions src/iqm/cirq_iqm/devices/valkmusa.py

This file was deleted.

6 changes: 2 additions & 4 deletions tests/test_iqm_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from cirq.testing import assert_circuits_have_same_unitary_given_final_permutation, assert_has_diagram, random_circuit
import pytest

from iqm.cirq_iqm import Adonis, Apollo, IQMDevice, IQMMoveGate, Valkmusa
from iqm.cirq_iqm import Adonis, Apollo, IQMDevice, IQMMoveGate


def test_equality_method():
Expand All @@ -24,11 +24,9 @@ def test_equality_method():
adonis_3 = Adonis()
apollo_1 = Apollo()
apollo_2 = Apollo()
valkmusa = Valkmusa()
adonis_3._metadata = valkmusa.metadata
adonis_3._metadata = apollo_1.metadata

assert adonis_1 == adonis_2
assert valkmusa != adonis_1
assert apollo_1 == apollo_2
assert adonis_2 != adonis_3

Expand Down
193 changes: 0 additions & 193 deletions tests/test_valkmusa.py

This file was deleted.

0 comments on commit 393e786

Please sign in to comment.