Skip to content

Commit

Permalink
adding h5py as required package (for backend export)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmendl committed Nov 9, 2023
1 parent 1d68676 commit 78fdd9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
install_requires=[
"numpy",
"scipy",
"h5py"
],
)
3 changes: 1 addition & 2 deletions src/qib/backend/tensor_network_provider.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import h5py
from typing import Sequence
import h5py
from qib.backend import QuantumProvider
from qib.circuit import Circuit
from qib.field import Field
Expand Down Expand Up @@ -28,4 +28,3 @@ def query_results(self, job):
"""
Query results of a previously submitted job.
"""
pass

0 comments on commit 78fdd9b

Please sign in to comment.