Skip to content

Commit 21947ee

Browse files
committed
feat(ci): update version
1 parent 481df42 commit 21947ee

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

qiskit_scaleway/backends/base_job.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def submit(self, session_id: str) -> None:
8080

8181
options = self._config.copy()
8282
shots = options.pop("shots")
83+
memory = options.pop("memory")
8384

8485
programs = map(lambda c: QuantumProgram.from_qiskit_circuit(c), self._circuits)
8586

@@ -106,6 +107,9 @@ def submit(self, session_id: str) -> None:
106107

107108
computation_parameters_json = QuantumComputationParameters(
108109
shots=shots,
110+
options={
111+
"memory": memory,
112+
},
109113
).to_json_str()
110114

111115
model = self._client.create_model(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
2424
name="qiskit_scaleway",
25-
version="0.3.2",
25+
version="0.3.3",
2626
project_urls={
2727
"Documentation": "https://www.scaleway.com/en/quantum-as-a-service/",
2828
"Source": "https://github.com/scaleway/qiskit-scaleway",

0 commit comments

Comments
 (0)