Skip to content

Commit 4f52faf

Browse files
author
Axel Dahlberg
authored
Merge pull request #68 from SoftwareQuTech/Develop
Release 3.2.3
2 parents 1515451 + 998926a commit 4f52faf

6 files changed

Lines changed: 6 additions & 8 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.2.2
2+
current_version = 3.2.3
33
commit = True
44
tag = False
55

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[flake8]
22
count = True
33
exclude = docs, .git, .idea, __pycache__
4-
ignore = E203 W291 W293 E743 E265 W605 W503
4+
ignore = E203 W291 W293 E743 E265 W605 W503 E741
55
max-line-length = 120
66
statistics = True
77
per-file-ignores = __init__.py: F401

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CQC (3.2.2)
1+
# CQC (3.2.3)
22

33
The classical-quantum combiner (CQC) interface is an interface between higher layers and hardware in a Quantum Internet. It comes with a Python, C and Rust library for constructing CQC messages. The Python library is definitely the best place to get started.
44

cqc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.2.2'
1+
__version__ = '3.2.3'

cqc/pythonLib/cqc_handler.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ def __init__(self, name, app_id=None, pend_messages=False, notify=True):
107107
# Set an app ID
108108
self._appID = self._get_new_app_id(app_id)
109109

110-
self.active_qubits = []
111-
112110
# This is a sort of global notify
113111
self.notify = notify
114112

examples/python/hello_noLib/aliceTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def init(name, cqcFile=None):
6060
if name in cqcNet.hostDict:
6161
myHost = cqcNet.hostDict[name]
6262
else:
63-
logging.error("The name '%s' is not in the cqc network.", name)
64-
raise LookupError("The name '%s' is not in the cqc network.".format(name))
63+
logging.error("The name '{}' is not in the cqc network.".format(name))
64+
raise LookupError("The name '{}' is not in the cqc network.".format(name))
6565

6666
addr = myHost.addr
6767

0 commit comments

Comments
 (0)