Skip to content

Commit

Permalink
Merge branch 'main' into fixissue/1165
Browse files Browse the repository at this point in the history
  • Loading branch information
david-alber committed Feb 22, 2024
2 parents 2380459 + 3c90230 commit b28823b
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/kubernetes-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
cd client
pip install . --no-cache-dir
pip install --no-cache-dir \
ipywidgets==8.1.0 \
circuit-knitting-toolbox==0.2.0 \
ipywidgets==8.1.1 \
circuit-knitting-toolbox>=0.6.0 \
matplotlib==3.7.1 \
pyscf==2.2.1 \
scipy==1.10 \
qiskit-ibmq-provider==0.20.2 \
qiskit-aer==0.12.0 \
qiskit-ibm-provider>=0.9.0 \
qiskit-aer>=0.13.3 \
certifi==2023.7.22
pip install nbmake pytest
- name: Run notebooks
Expand Down
6 changes: 3 additions & 3 deletions charts/qs-observability/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ dependencies:
version: 4.10.0
- name: promtail
repository: https://grafana.github.io/helm-charts
version: 6.15.4
digest: sha256:dd676a7e5cfdb477a32ee7ee6261e8bcc05a47e14b29331a9b0ef269dfc1790c
generated: "2024-01-24T22:02:08.03406892Z"
version: 6.15.5
digest: sha256:f2e06245745974ffee0c8e67003974d44bd08234b796bb7696befae3e4581ebd
generated: "2024-02-21T16:32:40.011993592Z"
2 changes: 1 addition & 1 deletion charts/qs-observability/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
repository: https://grafana.github.io/helm-charts
- name: promtail
condition: promtailEnable
version: 6.15.4
version: 6.15.5
repository: https://grafana.github.io/helm-charts

maintainers:
Expand Down
8 changes: 4 additions & 4 deletions charts/quantum-serverless/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ dependencies:
version: 0.9.0
- name: nginx-ingress-controller
repository: https://charts.bitnami.com/bitnami
version: 9.9.4
version: 9.11.0
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 13.2.24
version: 13.4.4
- name: kuberay-operator
repository: https://ray-project.github.io/kuberay-helm
version: 1.0.0
digest: sha256:689a16e19c8cebaccd63015905997d01665f8880c83964cb0f4388f5b82a82e0
generated: "2024-02-12T15:00:05.326828301Z"
digest: sha256:9b10c7858508eede98d9302d08742dbb3adcaa7d3afe165219145d4c68ab29ee
generated: "2024-02-21T17:19:57.852813464Z"
4 changes: 2 additions & 2 deletions charts/quantum-serverless/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ dependencies:
version: 0.9.0
- name: nginx-ingress-controller
condition: nginxIngressControllerEnable
version: 9.9.4
version: 9.11.0
repository: https://charts.bitnami.com/bitnami
- name: postgresql
condition: postgresqlEnable
version: 13.2.24
version: 13.4.4
repository: https://charts.bitnami.com/bitnami
- name: kuberay-operator
condition: kuberayOperatorEnable
Expand Down
4 changes: 2 additions & 2 deletions client/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ ray[default,data]>=2.9.1, <3
requests>=2.31.0
importlib-metadata>=5.2.0
qiskit>=0.45.2
qiskit-ibm-runtime>=0.18.0
qiskit-ibm-provider>=0.8.0
qiskit-ibm-runtime>=0.19.1
qiskit-ibm-provider>=0.9.0
# TODO: make sure ray node and notebook node have the same version of cloudpickle
cloudpickle==2.2.1
tqdm>=4.65.0
Expand Down
10 changes: 5 additions & 5 deletions client/tests/library/test_transpiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from qiskit import QuantumCircuit
from qiskit.circuit.random import random_circuit
from qiskit.providers.fake_provider import FakeAlmadenV2, FakeBrooklynV2
from qiskit.providers.fake_provider import GenericBackendV2

from quantum_serverless import QuantumServerless
from quantum_serverless.exception import QuantumServerlessException
Expand All @@ -31,8 +31,8 @@ def test_transpile(self):
circuit1 = random_circuit(5, 3)
circuit2 = random_circuit(5, 3)

backend1 = FakeAlmadenV2()
backend2 = FakeBrooklynV2()
backend1 = GenericBackendV2(num_qubits=5)
backend2 = GenericBackendV2(num_qubits=5)

with QuantumServerless().context():
transpiled_circuits = parallel_transpile(
Expand All @@ -48,8 +48,8 @@ def test_transpile_fail(self):
"""Test failing cases for parallel transpile."""
circuit1 = random_circuit(5, 3)

backend1 = FakeAlmadenV2()
backend2 = FakeBrooklynV2()
backend1 = GenericBackendV2(num_qubits=5)
backend2 = GenericBackendV2(num_qubits=5)

with QuantumServerless().context():
# inconsistent number of circuits and backends
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/basic/03_dependencies.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
" title=\"pattern-with-dependencies\",\n",
" entrypoint=\"pattern_with_dependencies.py\",\n",
" working_dir=\"./source_files/\",\n",
" dependencies=[\"qiskit-experiments==0.5.2\"],\n",
" dependencies=[\"qiskit-experiments==0.6.0\"],\n",
")"
]
},
Expand Down

0 comments on commit b28823b

Please sign in to comment.