- 
                Notifications
    You must be signed in to change notification settings 
- Fork 58
Enhancements and bugfixes in Report.write_notebook #658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9f01e57
              77ec58d
              56accca
              d5916a0
              71f0c53
              12752ea
              bc7032e
              f90839e
              e6cc3a2
              d70c712
              c8d5edb
              d741eb3
              587bb84
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -5,9 +5,11 @@ psutil | |
| matplotlib | ||
| ipython | ||
| notebook | ||
| nbformat | ||
| msgpack | ||
| cython | ||
| cvxopt | ||
| cvxpy | ||
| seaborn | ||
| packaging | ||
| pytest | ||
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -25,7 +25,6 @@ | |
|  | ||
| import numpy as _np | ||
| from pygsti.baseobjs.label import Label as _Label, CircuitLabel as _CircuitLabel | ||
|  | ||
| from pygsti.baseobjs import outcomelabeldict as _ld, _compatibility as _compat | ||
| from pygsti.tools import internalgates as _itgs | ||
| from pygsti.tools import slicetools as _slct | ||
|  | @@ -512,7 +511,6 @@ def __init__(self, layer_labels=(), line_labels='auto', num_lines=None, editable | |
| self._bare_init(labels, my_line_labels, editable, name, stringrep, | ||
| occurrence, compilable_layer_indices_tup) | ||
|  | ||
|  | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There should only be one blank line between method definitions. | ||
| @classmethod | ||
| def _fastinit(cls, labels, line_labels, editable, name='', stringrep=None, occurrence=None, | ||
| compilable_layer_indices_tup=()): | ||
|  | @@ -4942,6 +4940,7 @@ def done_editing(self): | |
| self._hashable_tup = self.tup | ||
| self._hash = hash(self._hashable_tup) | ||
|  | ||
|  | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Two blank lines between class definitions. | ||
| class CompressedCircuit(object): | ||
| """ | ||
| A "compressed" Circuit that requires less disk space. | ||
|  | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changes to this file fix a longstanding bug about calling  | 
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Glad to see the ErrgenTable fixed! | 
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I appreciate this warning. | 
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nbformat is needed for tests in test_packages to run successfully. I can't figure out if nbformat is an explicit dependency of  | 
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added newline at end of file | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -5,4 +5,4 @@ plotly | |
| pandas | ||
| networkx | ||
| stim | ||
| tqdm | ||
| tqdm | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added newline at end of file | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -7,4 +7,4 @@ networkx | |
| numpydoc | ||
| sphinx==6.2.1 | ||
| sphinx_rtd_theme>=1.2.2 | ||
| sphinx-autoapi | ||
| sphinx-autoapi | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should only be two blank lines between class definitions.