quarchpy 2.2.15__py2.py3-none-any.whl → 2.2.16__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. quarchpy/__pycache__/__init__.cpython-310.pyc +0 -0
  2. quarchpy/__pycache__/_version.cpython-310.pyc +0 -0
  3. quarchpy/__pycache__/connection.cpython-310.pyc +0 -0
  4. quarchpy/__pycache__/install_qps.cpython-310.pyc +0 -0
  5. quarchpy/_version.py +1 -1
  6. quarchpy/config_files/__pycache__/__init__.cpython-310.pyc +0 -0
  7. quarchpy/config_files/__pycache__/quarch_config_parser.cpython-310.pyc +0 -0
  8. quarchpy/connection_specific/__pycache__/StreamChannels.cpython-310.pyc +0 -0
  9. quarchpy/connection_specific/__pycache__/__init__.cpython-310.pyc +0 -0
  10. quarchpy/connection_specific/__pycache__/connection_QIS.cpython-310.pyc +0 -0
  11. quarchpy/connection_specific/__pycache__/connection_QPS.cpython-310.pyc +0 -0
  12. quarchpy/connection_specific/__pycache__/connection_ReST.cpython-310.pyc +0 -0
  13. quarchpy/connection_specific/__pycache__/connection_Serial.cpython-310.pyc +0 -0
  14. quarchpy/connection_specific/__pycache__/connection_TCP.cpython-310.pyc +0 -0
  15. quarchpy/connection_specific/__pycache__/connection_USB.cpython-310.pyc +0 -0
  16. quarchpy/connection_specific/__pycache__/mDNS.cpython-310.pyc +0 -0
  17. quarchpy/connection_specific/connection_QIS.py +1510 -1485
  18. quarchpy/connection_specific/jdk_jres/__pycache__/__init__.cpython-310.pyc +0 -0
  19. quarchpy/connection_specific/jdk_jres/__pycache__/fix_permissions.cpython-310.pyc +0 -0
  20. quarchpy/connection_specific/serial/__pycache__/__init__.cpython-310.pyc +0 -0
  21. quarchpy/connection_specific/serial/__pycache__/serialposix.cpython-310.pyc +0 -0
  22. quarchpy/connection_specific/serial/__pycache__/serialutil.cpython-310.pyc +0 -0
  23. quarchpy/connection_specific/serial/tools/__pycache__/__init__.cpython-310.pyc +0 -0
  24. quarchpy/connection_specific/serial/tools/__pycache__/list_ports.cpython-310.pyc +0 -0
  25. quarchpy/connection_specific/serial/tools/__pycache__/list_ports_common.cpython-310.pyc +0 -0
  26. quarchpy/connection_specific/serial/tools/__pycache__/list_ports_linux.cpython-310.pyc +0 -0
  27. quarchpy/connection_specific/serial/tools/__pycache__/list_ports_posix.cpython-310.pyc +0 -0
  28. quarchpy/debug/__pycache__/SystemTest.cpython-310.pyc +0 -0
  29. quarchpy/debug/__pycache__/__init__.cpython-310.pyc +0 -0
  30. quarchpy/debug/__pycache__/versionCompare.cpython-310.pyc +0 -0
  31. quarchpy/device/__pycache__/__init__.cpython-310.pyc +0 -0
  32. quarchpy/device/__pycache__/device.cpython-310.pyc +0 -0
  33. quarchpy/device/__pycache__/device_fixture_idn_info.cpython-310.pyc +0 -0
  34. quarchpy/device/__pycache__/device_idn_info.cpython-310.pyc +0 -0
  35. quarchpy/device/__pycache__/device_network_info.cpython-310.pyc +0 -0
  36. quarchpy/device/__pycache__/discovered_device.cpython-310.pyc +0 -0
  37. quarchpy/device/__pycache__/packet_processing.cpython-310.pyc +0 -0
  38. quarchpy/device/__pycache__/quarchArray.cpython-310.pyc +0 -0
  39. quarchpy/device/__pycache__/quarchPPM.cpython-310.pyc +0 -0
  40. quarchpy/device/__pycache__/quarchQPS.cpython-310.pyc +0 -0
  41. quarchpy/device/__pycache__/scanDevices.cpython-310.pyc +0 -0
  42. quarchpy/device/quarchPPM.py +7 -10
  43. quarchpy/disk_test/__pycache__/AbsDiskFinder.cpython-310.pyc +0 -0
  44. quarchpy/disk_test/__pycache__/DiskTargetSelection.cpython-310.pyc +0 -0
  45. quarchpy/disk_test/__pycache__/__init__.cpython-310.pyc +0 -0
  46. quarchpy/disk_test/__pycache__/iometerDiskFinder.cpython-310.pyc +0 -0
  47. quarchpy/docs/CHANGES.rst +4 -0
  48. quarchpy/docs/_build/doctrees/CHANGES.doctree +0 -0
  49. quarchpy/docs/_build/doctrees/environment.pickle +0 -0
  50. quarchpy/docs/_build/doctrees/source/changelog.doctree +0 -0
  51. quarchpy/docs/_build/doctrees/source/quarchpy.connection_specific.doctree +0 -0
  52. quarchpy/docs/_build/doctrees/source/quarchpy.device.doctree +0 -0
  53. quarchpy/docs/_build/doctrees/source/quarchpy.qis.doctree +0 -0
  54. quarchpy/docs/_build/html/CHANGES.html +163 -157
  55. quarchpy/docs/_build/html/_sources/CHANGES.rst.txt +4 -0
  56. quarchpy/docs/_build/html/genindex.html +7 -3
  57. quarchpy/docs/_build/html/index.html +80 -79
  58. quarchpy/docs/_build/html/objects.inv +0 -0
  59. quarchpy/docs/_build/html/searchindex.js +1 -1
  60. quarchpy/docs/_build/html/source/changelog.html +243 -236
  61. quarchpy/docs/_build/html/source/quarchpy.connection_specific.html +12 -3
  62. quarchpy/docs/_build/html/source/quarchpy.device.html +8 -16
  63. quarchpy/docs/_build/html/source/quarchpy.html +2 -0
  64. quarchpy/docs/_build/html/source/quarchpy.qis.html +12 -3
  65. quarchpy/fio/__pycache__/FIO_interface.cpython-310.pyc +0 -0
  66. quarchpy/fio/__pycache__/__init__.cpython-310.pyc +0 -0
  67. quarchpy/install_qps.py +99 -62
  68. quarchpy/iometer/__pycache__/__init__.cpython-310.pyc +0 -0
  69. quarchpy/iometer/__pycache__/gen_iometer_template.cpython-310.pyc +0 -0
  70. quarchpy/iometer/__pycache__/iometerFuncs.cpython-310.pyc +0 -0
  71. quarchpy/qis/__pycache__/StreamHeaderInfo.cpython-310.pyc +0 -0
  72. quarchpy/qis/__pycache__/__init__.cpython-310.pyc +0 -0
  73. quarchpy/qis/__pycache__/qisFuncs.cpython-310.pyc +0 -0
  74. quarchpy/qps/__pycache__/__init__.cpython-310.pyc +0 -0
  75. quarchpy/qps/__pycache__/qpsFuncs.cpython-310.pyc +0 -0
  76. quarchpy/qps/qpsFuncs.py +4 -0
  77. quarchpy/user_interface/__pycache__/__init__.cpython-310.pyc +0 -0
  78. quarchpy/user_interface/__pycache__/user_interface.cpython-310.pyc +0 -0
  79. quarchpy/utilities/__pycache__/TestCenter.cpython-310.pyc +0 -0
  80. quarchpy/utilities/__pycache__/TimeValue.cpython-310.pyc +0 -0
  81. quarchpy/utilities/__pycache__/__init__.cpython-310.pyc +0 -0
  82. {quarchpy-2.2.15.dist-info → quarchpy-2.2.16.dist-info}/METADATA +15 -2
  83. {quarchpy-2.2.15.dist-info → quarchpy-2.2.16.dist-info}/RECORD +85 -85
  84. {quarchpy-2.2.15.dist-info → quarchpy-2.2.16.dist-info}/WHEEL +1 -1
  85. {quarchpy-2.2.15.dist-info → quarchpy-2.2.16.dist-info}/top_level.txt +0 -0
@@ -45,261 +45,267 @@
45
45
  <h2>Change Log<a class="headerlink" href="#change-log" title="Link to this heading">¶</a></h2>
46
46
  </section>
47
47
  <section id="id1">
48
- <h2>2.2.15<a class="headerlink" href="#id1" title="Link to this heading">¶</a></h2>
48
+ <h2>2.2.16<a class="headerlink" href="#id1" title="Link to this heading">¶</a></h2>
49
49
  <ul class="simple">
50
- <li><p>Bugfix for “&gt;” appearing in qis output when streaming at max speed</p></li>
50
+ <li><p>New QPS 1.50 and QIS 1.52</p></li>
51
51
  </ul>
52
52
  </section>
53
53
  <section id="id2">
54
- <h2>2.2.14<a class="headerlink" href="#id2" title="Link to this heading">¶</a></h2>
54
+ <h2>2.2.15<a class="headerlink" href="#id2" title="Link to this heading">¶</a></h2>
55
55
  <ul class="simple">
56
- <li><p>New QPS 1.49 and QIS 1.51</p></li>
56
+ <li><p>Bugfix for “&gt;” appearing in qis output when streaming at max speed</p></li>
57
57
  </ul>
58
58
  </section>
59
59
  <section id="id3">
60
- <h2>2.2.13<a class="headerlink" href="#id3" title="Link to this heading">¶</a></h2>
60
+ <h2>2.2.14<a class="headerlink" href="#id3" title="Link to this heading">¶</a></h2>
61
+ <ul class="simple">
62
+ <li><p>New QPS 1.49 and QIS 1.51</p></li>
63
+ </ul>
64
+ </section>
65
+ <section id="id4">
66
+ <h2>2.2.13<a class="headerlink" href="#id4" title="Link to this heading">¶</a></h2>
61
67
  <ul class="simple">
62
68
  <li><p>New QPS 1.48 and QIS 1.50</p></li>
63
69
  <li><p>Lightweight Quarchpy, QPS and QIS now downloaded on first use after install.</p></li>
64
70
  <li><p>Minor bug fixes</p></li>
65
71
  </ul>
66
72
  </section>
67
- <section id="id4">
68
- <h2>2.2.12<a class="headerlink" href="#id4" title="Link to this heading">¶</a></h2>
73
+ <section id="id5">
74
+ <h2>2.2.12<a class="headerlink" href="#id5" title="Link to this heading">¶</a></h2>
69
75
  <ul class="simple">
70
76
  <li><p>Minor bug fix</p></li>
71
77
  </ul>
72
78
  </section>
73
- <section id="id5">
74
- <h2>2.2.11<a class="headerlink" href="#id5" title="Link to this heading">¶</a></h2>
79
+ <section id="id6">
80
+ <h2>2.2.11<a class="headerlink" href="#id6" title="Link to this heading">¶</a></h2>
75
81
  <ul class="simple">
76
82
  <li><p>Minor bug fix</p></li>
77
83
  </ul>
78
84
  </section>
79
- <section id="id6">
80
- <h2>2.2.10<a class="headerlink" href="#id6" title="Link to this heading">¶</a></h2>
85
+ <section id="id7">
86
+ <h2>2.2.10<a class="headerlink" href="#id7" title="Link to this heading">¶</a></h2>
81
87
  <ul class="simple">
82
88
  <li><p>Fix for new HDPPM FW discovery over eithernet</p></li>
83
89
  <li><p>Minor bug fix</p></li>
84
90
  </ul>
85
91
  </section>
86
- <section id="id7">
87
- <h2>2.2.9<a class="headerlink" href="#id7" title="Link to this heading">¶</a></h2>
92
+ <section id="id8">
93
+ <h2>2.2.9<a class="headerlink" href="#id8" title="Link to this heading">¶</a></h2>
88
94
  <ul class="simple">
89
95
  <li><p>New QPS 1.47 and QIS 1.49</p></li>
90
96
  </ul>
91
97
  </section>
92
- <section id="id8">
93
- <h2>2.2.8<a class="headerlink" href="#id8" title="Link to this heading">¶</a></h2>
98
+ <section id="id9">
99
+ <h2>2.2.8<a class="headerlink" href="#id9" title="Link to this heading">¶</a></h2>
94
100
  <ul class="simple">
95
101
  <li><p>New QPS 1.46 and QIS 1.48</p></li>
96
102
  </ul>
97
103
  </section>
98
- <section id="id9">
99
- <h2>2.2.7<a class="headerlink" href="#id9" title="Link to this heading">¶</a></h2>
104
+ <section id="id10">
105
+ <h2>2.2.7<a class="headerlink" href="#id10" title="Link to this heading">¶</a></h2>
100
106
  <ul class="simple">
101
107
  <li><p>Bug fix for QIS 1.47 missing lib for linux only</p></li>
102
108
  </ul>
103
109
  </section>
104
- <section id="id10">
105
- <h2>2.2.6<a class="headerlink" href="#id10" title="Link to this heading">¶</a></h2>
110
+ <section id="id11">
111
+ <h2>2.2.6<a class="headerlink" href="#id11" title="Link to this heading">¶</a></h2>
106
112
  <ul class="simple">
107
113
  <li><p>New QPS 1.45 and QIS 1.47</p></li>
108
114
  </ul>
109
115
  </section>
110
- <section id="id11">
111
- <h2>2.2.5<a class="headerlink" href="#id11" title="Link to this heading">¶</a></h2>
116
+ <section id="id12">
117
+ <h2>2.2.5<a class="headerlink" href="#id12" title="Link to this heading">¶</a></h2>
112
118
  <ul class="simple">
113
119
  <li><p>Minor Bug fix and removal of redundant jar</p></li>
114
120
  </ul>
115
121
  </section>
116
- <section id="id12">
117
- <h2>2.2.4<a class="headerlink" href="#id12" title="Link to this heading">¶</a></h2>
122
+ <section id="id13">
123
+ <h2>2.2.4<a class="headerlink" href="#id13" title="Link to this heading">¶</a></h2>
118
124
  <ul class="simple">
119
125
  <li><p>Update to Java libraries to run QPS</p></li>
120
126
  <li><p>Removal of depracated libs saveing space</p></li>
121
127
  </ul>
122
128
  </section>
123
- <section id="id13">
124
- <h2>2.2.3<a class="headerlink" href="#id13" title="Link to this heading">¶</a></h2>
129
+ <section id="id14">
130
+ <h2>2.2.3<a class="headerlink" href="#id14" title="Link to this heading">¶</a></h2>
125
131
  <ul class="simple">
126
132
  <li><p>Minor bug fix</p></li>
127
133
  </ul>
128
134
  </section>
129
- <section id="id14">
130
- <h2>2.2.2<a class="headerlink" href="#id14" title="Link to this heading">¶</a></h2>
135
+ <section id="id15">
136
+ <h2>2.2.2<a class="headerlink" href="#id15" title="Link to this heading">¶</a></h2>
131
137
  <ul class="simple">
132
138
  <li><p>New QPS 1.44 and QIS 1.46</p></li>
133
139
  <li><p>Added support for automatic creation of default synthetic channels when connecting to module via QIS</p></li>
134
140
  <li><p>Minor bug fixes</p></li>
135
141
  </ul>
136
142
  </section>
137
- <section id="id15">
138
- <h2>2.2.1<a class="headerlink" href="#id15" title="Link to this heading">¶</a></h2>
143
+ <section id="id16">
144
+ <h2>2.2.1<a class="headerlink" href="#id16" title="Link to this heading">¶</a></h2>
139
145
  <ul class="simple">
140
146
  <li><p>New QPS v1.43 and QIS v1.45 packaged with java 21 with no need for installed java.</p></li>
141
147
  <li><p>Minor bug fixes</p></li>
142
148
  </ul>
143
149
  </section>
144
- <section id="id16">
145
- <h2>2.2.0<a class="headerlink" href="#id16" title="Link to this heading">¶</a></h2>
150
+ <section id="id17">
151
+ <h2>2.2.0<a class="headerlink" href="#id17" title="Link to this heading">¶</a></h2>
146
152
  <ul class="simple">
147
153
  <li><p>New QPS v1.42 and QIS v1.44 packaged with java 21 with no need for installed java.</p></li>
148
154
  <li><p>Minor bug fixes</p></li>
149
155
  </ul>
150
156
  </section>
151
- <section id="id17">
152
- <h2>2.1.26<a class="headerlink" href="#id17" title="Link to this heading">¶</a></h2>
157
+ <section id="id18">
158
+ <h2>2.1.26<a class="headerlink" href="#id18" title="Link to this heading">¶</a></h2>
153
159
  <ul class="simple">
154
160
  <li><p>minor bugfix</p></li>
155
161
  </ul>
156
162
  </section>
157
- <section id="id18">
158
- <h2>2.1.25<a class="headerlink" href="#id18" title="Link to this heading">¶</a></h2>
163
+ <section id="id19">
164
+ <h2>2.1.25<a class="headerlink" href="#id19" title="Link to this heading">¶</a></h2>
159
165
  <ul class="simple">
160
166
  <li><p>New QPS 1.40 and Qis 1.43</p></li>
161
167
  <li><p>mdns scanning added to quarchpy</p></li>
162
168
  </ul>
163
169
  </section>
164
- <section id="id19">
165
- <h2>2.1.24<a class="headerlink" href="#id19" title="Link to this heading">¶</a></h2>
170
+ <section id="id20">
171
+ <h2>2.1.24<a class="headerlink" href="#id20" title="Link to this heading">¶</a></h2>
166
172
  <ul class="simple">
167
173
  <li><p>Yanked</p></li>
168
174
  </ul>
169
175
  </section>
170
- <section id="id20">
171
- <h2>2.1.23<a class="headerlink" href="#id20" title="Link to this heading">¶</a></h2>
176
+ <section id="id21">
177
+ <h2>2.1.23<a class="headerlink" href="#id21" title="Link to this heading">¶</a></h2>
172
178
  <ul class="simple">
173
179
  <li><p>QIS and QPS devices and interfaces can use sendCommand to send comannds to the modules and to the applications uniformly</p></li>
174
180
  <li><p>Tidy up of print statments and comments.</p></li>
175
181
  </ul>
176
182
  </section>
177
- <section id="id21">
178
- <h2>2.1.22<a class="headerlink" href="#id21" title="Link to this heading">¶</a></h2>
183
+ <section id="id22">
184
+ <h2>2.1.22<a class="headerlink" href="#id22" title="Link to this heading">¶</a></h2>
179
185
  <ul class="simple">
180
186
  <li><p>QIS and QPS patch containing mDNS removal</p></li>
181
187
  </ul>
182
188
  </section>
183
- <section id="id22">
184
- <h2>2.1.21<a class="headerlink" href="#id22" title="Link to this heading">¶</a></h2>
189
+ <section id="id23">
190
+ <h2>2.1.21<a class="headerlink" href="#id23" title="Link to this heading">¶</a></h2>
185
191
  <ul class="simple">
186
192
  <li><p>New QPS v1.38 and QIS 1.41</p></li>
187
193
  <li><p>Minor bug fixes</p></li>
188
194
  </ul>
189
195
  </section>
190
- <section id="id23">
191
- <h2>2.1.20<a class="headerlink" href="#id23" title="Link to this heading">¶</a></h2>
196
+ <section id="id24">
197
+ <h2>2.1.20<a class="headerlink" href="#id24" title="Link to this heading">¶</a></h2>
192
198
  <ul class="simple">
193
199
  <li><p>Improved direct IP scanning for quarch modules</p></li>
194
200
  <li><p>New QPS v1.37 and QIS v1.40</p></li>
195
201
  </ul>
196
202
  </section>
197
- <section id="id24">
198
- <h2>2.1.19<a class="headerlink" href="#id24" title="Link to this heading">¶</a></h2>
203
+ <section id="id25">
204
+ <h2>2.1.19<a class="headerlink" href="#id25" title="Link to this heading">¶</a></h2>
199
205
  <ul class="simple">
200
206
  <li><p>Imporoved QIS streaming</p></li>
201
207
  <li><p>Bug fixes</p></li>
202
208
  <li><p>Added zeroconf, numpy and pandas as requirements</p></li>
203
209
  </ul>
204
210
  </section>
205
- <section id="id25">
206
- <h2>2.1.18<a class="headerlink" href="#id25" title="Link to this heading">¶</a></h2>
211
+ <section id="id26">
212
+ <h2>2.1.18<a class="headerlink" href="#id26" title="Link to this heading">¶</a></h2>
207
213
  <ul class="simple">
208
214
  <li><p>Minor bug fix</p></li>
209
215
  </ul>
210
216
  </section>
211
- <section id="id26">
212
- <h2>2.1.17<a class="headerlink" href="#id26" title="Link to this heading">¶</a></h2>
217
+ <section id="id27">
218
+ <h2>2.1.17<a class="headerlink" href="#id27" title="Link to this heading">¶</a></h2>
213
219
  <ul class="simple">
214
220
  <li><p>Improved QIS QPS launching on Linux sytems</p></li>
215
221
  <li><p>System debug for linux systems</p></li>
216
222
  </ul>
217
223
  </section>
218
- <section id="id27">
219
- <h2>2.1.16<a class="headerlink" href="#id27" title="Link to this heading">¶</a></h2>
224
+ <section id="id28">
225
+ <h2>2.1.16<a class="headerlink" href="#id28" title="Link to this heading">¶</a></h2>
220
226
  <ul class="simple">
221
227
  <li><p>FIO mb/s parsing</p></li>
222
228
  <li><p>Improved QIS QPS launching</p></li>
223
229
  </ul>
224
230
  </section>
225
- <section id="id28">
226
- <h2>2.1.15<a class="headerlink" href="#id28" title="Link to this heading">¶</a></h2>
231
+ <section id="id29">
232
+ <h2>2.1.15<a class="headerlink" href="#id29" title="Link to this heading">¶</a></h2>
227
233
  <ul class="simple">
228
234
  <li><p>minor bug fix</p></li>
229
235
  </ul>
230
236
  </section>
231
- <section id="id29">
232
- <h2>2.1.14<a class="headerlink" href="#id29" title="Link to this heading">¶</a></h2>
237
+ <section id="id30">
238
+ <h2>2.1.14<a class="headerlink" href="#id30" title="Link to this heading">¶</a></h2>
233
239
  <ul class="simple">
234
240
  <li><p>minor bug fixes and logging improvements</p></li>
235
241
  </ul>
236
242
  </section>
237
- <section id="id30">
238
- <h2>2.1.13<a class="headerlink" href="#id30" title="Link to this heading">¶</a></h2>
243
+ <section id="id31">
244
+ <h2>2.1.13<a class="headerlink" href="#id31" title="Link to this heading">¶</a></h2>
239
245
  <ul class="simple">
240
246
  <li><p>New QPS v1.36</p></li>
241
247
  <li><p>New QIS v1.39</p></li>
242
248
  <li><p>minor bug fixes and logging improvements</p></li>
243
249
  </ul>
244
250
  </section>
245
- <section id="id31">
246
- <h2>2.1.12<a class="headerlink" href="#id31" title="Link to this heading">¶</a></h2>
251
+ <section id="id32">
252
+ <h2>2.1.12<a class="headerlink" href="#id32" title="Link to this heading">¶</a></h2>
247
253
  <ul class="simple">
248
254
  <li><p>New QPS v1.35</p></li>
249
255
  <li><p>New QIS v1.38</p></li>
250
256
  <li><p>minor bug fixes and removal of depracated code</p></li>
251
257
  </ul>
252
258
  </section>
253
- <section id="id32">
254
- <h2>2.1.11<a class="headerlink" href="#id32" title="Link to this heading">¶</a></h2>
259
+ <section id="id33">
260
+ <h2>2.1.11<a class="headerlink" href="#id33" title="Link to this heading">¶</a></h2>
255
261
  <ul class="simple">
256
262
  <li><p>New QPS v1.32</p></li>
257
263
  <li><p>New QIS v1.37</p></li>
258
264
  <li><p>quarchpy.run module_debug added for checking state of module and DUT</p></li>
259
265
  </ul>
260
266
  </section>
261
- <section id="id33">
262
- <h2>2.1.10<a class="headerlink" href="#id33" title="Link to this heading">¶</a></h2>
267
+ <section id="id34">
268
+ <h2>2.1.10<a class="headerlink" href="#id34" title="Link to this heading">¶</a></h2>
263
269
  <ul class="simple">
264
270
  <li><p>New QPS v1.29</p></li>
265
271
  <li><p>New QIS v1.33</p></li>
266
272
  </ul>
267
273
  </section>
268
- <section id="id34">
269
- <h2>2.1.8<a class="headerlink" href="#id34" title="Link to this heading">¶</a></h2>
274
+ <section id="id35">
275
+ <h2>2.1.8<a class="headerlink" href="#id35" title="Link to this heading">¶</a></h2>
270
276
  <ul class="simple">
271
277
  <li><p>New QPS v1.28</p></li>
272
278
  </ul>
273
279
  </section>
274
- <section id="id35">
275
- <h2>2.1.7<a class="headerlink" href="#id35" title="Link to this heading">¶</a></h2>
280
+ <section id="id36">
281
+ <h2>2.1.7<a class="headerlink" href="#id36" title="Link to this heading">¶</a></h2>
276
282
  <ul class="simple">
277
283
  <li><p>New QPS v1.27</p></li>
278
284
  <li><p>New QIS v1.32</p></li>
279
285
  </ul>
280
286
  </section>
281
- <section id="id36">
282
- <h2>2.1.6<a class="headerlink" href="#id36" title="Link to this heading">¶</a></h2>
287
+ <section id="id37">
288
+ <h2>2.1.6<a class="headerlink" href="#id37" title="Link to this heading">¶</a></h2>
283
289
  <ul class="simple">
284
290
  <li><p>New QPS v1.26</p></li>
285
291
  <li><p>New QIS v1.31</p></li>
286
292
  </ul>
287
293
  </section>
288
- <section id="id37">
289
- <h2>2.1.5<a class="headerlink" href="#id37" title="Link to this heading">¶</a></h2>
294
+ <section id="id38">
295
+ <h2>2.1.5<a class="headerlink" href="#id38" title="Link to this heading">¶</a></h2>
290
296
  <ul class="simple">
291
297
  <li><p>New QPS v1.24</p></li>
292
298
  </ul>
293
299
  </section>
294
- <section id="id38">
295
- <h2>2.1.4<a class="headerlink" href="#id38" title="Link to this heading">¶</a></h2>
300
+ <section id="id39">
301
+ <h2>2.1.4<a class="headerlink" href="#id39" title="Link to this heading">¶</a></h2>
296
302
  <ul class="simple">
297
303
  <li><p>New QPS v1.23</p></li>
298
304
  <li><p>New QIS v1.29</p></li>
299
305
  </ul>
300
306
  </section>
301
- <section id="id39">
302
- <h2>2.1.3<a class="headerlink" href="#id39" title="Link to this heading">¶</a></h2>
307
+ <section id="id40">
308
+ <h2>2.1.3<a class="headerlink" href="#id40" title="Link to this heading">¶</a></h2>
303
309
  <ul class="simple">
304
310
  <li><p>New QPS v1.22</p></li>
305
311
  <li><p>modules on the network can now be connected to using conType:QTLNumber eg. TCP:QTL1999-02-001</p></li>
@@ -308,15 +314,15 @@
308
314
  <li><p>display table formats multiline items and handles empty cells</p></li>
309
315
  </ul>
310
316
  </section>
311
- <section id="id40">
312
- <h2>2.1.2<a class="headerlink" href="#id40" title="Link to this heading">¶</a></h2>
317
+ <section id="id41">
318
+ <h2>2.1.2<a class="headerlink" href="#id41" title="Link to this heading">¶</a></h2>
313
319
  <ul class="simple">
314
320
  <li><p>QPS v1.20</p></li>
315
321
  <li><p>QIS v1.19</p></li>
316
322
  </ul>
317
323
  </section>
318
- <section id="id41">
319
- <h2>2.1.1<a class="headerlink" href="#id41" title="Link to this heading">¶</a></h2>
324
+ <section id="id42">
325
+ <h2>2.1.1<a class="headerlink" href="#id42" title="Link to this heading">¶</a></h2>
320
326
  <ul class="simple">
321
327
  <li><p>Seperation of QIS module scan and QIS select device</p></li>
322
328
  <li><p>Added getQuarchDevice which is a wrapper around quarchDevice that allows connections to sub-devices in array controllers over all connection types</p></li>
@@ -324,28 +330,28 @@
324
330
  <li><p>Seperated the SystenTest (debug_info) into seperate parts with flags to allow the user to skip certain parts. This allows the test to be run without user interaction of selecting a module.</p></li>
325
331
  </ul>
326
332
  </section>
327
- <section id="id42">
328
- <h2>2.1.0<a class="headerlink" href="#id42" title="Link to this heading">¶</a></h2>
333
+ <section id="id43">
334
+ <h2>2.1.0<a class="headerlink" href="#id43" title="Link to this heading">¶</a></h2>
329
335
  <ul class="simple">
330
336
  <li><p>logging improvements</p></li>
331
337
  <li><p>usb locked devices fix for CentOS, Ubuntu, and Fedora</p></li>
332
338
  </ul>
333
339
  </section>
334
- <section id="id43">
335
- <h2>2.0.22<a class="headerlink" href="#id43" title="Link to this heading">¶</a></h2>
340
+ <section id="id44">
341
+ <h2>2.0.22<a class="headerlink" href="#id44" title="Link to this heading">¶</a></h2>
336
342
  <ul class="simple">
337
343
  <li><p>Calibration and QCS removed from quarchpy and are not in their own packages</p></li>
338
344
  <li><p>New command “python -m quarchpy.run debug -usbfix” sets USB rules to fix quarch modules appearing as locked devices on Linux OS</p></li>
339
345
  </ul>
340
346
  </section>
341
- <section id="id44">
342
- <h2>2.0.21<a class="headerlink" href="#id44" title="Link to this heading">¶</a></h2>
347
+ <section id="id45">
348
+ <h2>2.0.21<a class="headerlink" href="#id45" title="Link to this heading">¶</a></h2>
343
349
  <ul class="simple">
344
350
  <li><p>new QIS v1.23</p></li>
345
351
  </ul>
346
352
  </section>
347
- <section id="id45">
348
- <h2>2.0.20<a class="headerlink" href="#id45" title="Link to this heading">¶</a></h2>
353
+ <section id="id46">
354
+ <h2>2.0.20<a class="headerlink" href="#id46" title="Link to this heading">¶</a></h2>
349
355
  <ul class="simple">
350
356
  <li><p>New modules added to calibration, wiring prompt added, logging improvements</p></li>
351
357
  <li><p>Fixes for PAM streaming using QIS</p></li>
@@ -356,8 +362,8 @@
356
362
  <li><p>“quarchpy.run list_drives” command added</p></li>
357
363
  </ul>
358
364
  </section>
359
- <section id="id46">
360
- <h2>2.0.19<a class="headerlink" href="#id46" title="Link to this heading">¶</a></h2>
365
+ <section id="id47">
366
+ <h2>2.0.19<a class="headerlink" href="#id47" title="Link to this heading">¶</a></h2>
361
367
  <ul class="simple">
362
368
  <li><p>QPS v1.17</p></li>
363
369
  <li><p>Quarchpy run terminal runs the simple python terminal to talk to modules</p></li>
@@ -369,8 +375,8 @@
369
375
  <li><p>Minor bug fixes</p></li>
370
376
  </ul>
371
377
  </section>
372
- <section id="id47">
373
- <h2>2.0.18<a class="headerlink" href="#id47" title="Link to this heading">¶</a></h2>
378
+ <section id="id48">
379
+ <h2>2.0.18<a class="headerlink" href="#id48" title="Link to this heading">¶</a></h2>
374
380
  <ul class="simple">
375
381
  <li><p>QPS 1.13</p></li>
376
382
  <li><p>Iomenter drive location bugfix</p></li>
@@ -380,14 +386,14 @@
380
386
  <li><p>Updated communication to TLS</p></li>
381
387
  </ul>
382
388
  </section>
383
- <section id="id48">
384
- <h2>2.0.16<a class="headerlink" href="#id48" title="Link to this heading">¶</a></h2>
389
+ <section id="id49">
390
+ <h2>2.0.16<a class="headerlink" href="#id49" title="Link to this heading">¶</a></h2>
385
391
  <ul class="simple">
386
392
  <li><p>QPS 1.11</p></li>
387
393
  </ul>
388
394
  </section>
389
- <section id="id49">
390
- <h2>2.0.15<a class="headerlink" href="#id49" title="Link to this heading">¶</a></h2>
395
+ <section id="id50">
396
+ <h2>2.0.15<a class="headerlink" href="#id50" title="Link to this heading">¶</a></h2>
391
397
  <ul class="simple">
392
398
  <li><p>QIS v1.19.03 and QPS 1.10.12</p></li>
393
399
  <li><p>Updated debug info test</p></li>
@@ -395,22 +401,22 @@
395
401
  <li><p>Calibration updates</p></li>
396
402
  </ul>
397
403
  </section>
398
- <section id="id50">
399
- <h2>2.0.14<a class="headerlink" href="#id50" title="Link to this heading">¶</a></h2>
404
+ <section id="id51">
405
+ <h2>2.0.14<a class="headerlink" href="#id51" title="Link to this heading">¶</a></h2>
400
406
  <ul class="simple">
401
407
  <li><p>QPS annotations through quarchpy improvements</p></li>
402
408
  </ul>
403
409
  </section>
404
- <section id="id51">
405
- <h2>2.0.13<a class="headerlink" href="#id51" title="Link to this heading">¶</a></h2>
410
+ <section id="id52">
411
+ <h2>2.0.13<a class="headerlink" href="#id52" title="Link to this heading">¶</a></h2>
406
412
  <ul class="simple">
407
413
  <li><p>Python2 bug fixes</p></li>
408
414
  <li><p>UI tidy up</p></li>
409
415
  <li><p>New custom annotations and comments QPS API</p></li>
410
416
  </ul>
411
417
  </section>
412
- <section id="id52">
413
- <h2>2.0.12<a class="headerlink" href="#id52" title="Link to this heading">¶</a></h2>
418
+ <section id="id53">
419
+ <h2>2.0.12<a class="headerlink" href="#id53" title="Link to this heading">¶</a></h2>
414
420
  <ul class="simple">
415
421
  <li><p>Fixed issue with array module scan over UDP outside of subnet</p></li>
416
422
  <li><p>Bug fix for HD connection via USB in linux</p></li>
@@ -423,8 +429,8 @@
423
429
  <li><p>Calibration wait for specific module uptime and report file updates</p></li>
424
430
  </ul>
425
431
  </section>
426
- <section id="id53">
427
- <h2>2.0.11<a class="headerlink" href="#id53" title="Link to this heading">¶</a></h2>
432
+ <section id="id54">
433
+ <h2>2.0.11<a class="headerlink" href="#id54" title="Link to this heading">¶</a></h2>
428
434
  <ul class="simple">
429
435
  <li><p>Improved list selection for devices</p></li>
430
436
  <li><p>Fixed bug when scanning for devices within an Array</p></li>
@@ -432,8 +438,8 @@
432
438
  <li><p>Clean up of calibration switchbox code and user logging</p></li>
433
439
  </ul>
434
440
  </section>
435
- <section id="id54">
436
- <h2>2.0.10<a class="headerlink" href="#id54" title="Link to this heading">¶</a></h2>
441
+ <section id="id55">
442
+ <h2>2.0.10<a class="headerlink" href="#id55" title="Link to this heading">¶</a></h2>
437
443
  <ul class="simple">
438
444
  <li><p>QCS server logging cleaned up</p></li>
439
445
  <li><p>Additional platform tests added to debug_info test</p></li>
@@ -445,24 +451,24 @@
445
451
  <li><p>QCS improvements to linux drive enumeration tests</p></li>
446
452
  </ul>
447
453
  </section>
448
- <section id="id55">
449
- <h2>2.0.9<a class="headerlink" href="#id55" title="Link to this heading">¶</a></h2>
454
+ <section id="id56">
455
+ <h2>2.0.9<a class="headerlink" href="#id56" title="Link to this heading">¶</a></h2>
450
456
  <ul class="simple">
451
457
  <li><p>Significant QCS additions including power testing</p></li>
452
458
  <li><p>Added remote switchbox to calibration utility</p></li>
453
459
  <li><p>Various minor bug fixes and improvements to calibration utility</p></li>
454
460
  </ul>
455
461
  </section>
456
- <section id="id56">
457
- <h2>2.0.8<a class="headerlink" href="#id56" title="Link to this heading">¶</a></h2>
462
+ <section id="id57">
463
+ <h2>2.0.8<a class="headerlink" href="#id57" title="Link to this heading">¶</a></h2>
458
464
  <ul class="simple">
459
465
  <li><p>Added readme.md for PyPi description</p></li>
460
466
  <li><p>Fixed bug in QIS when checking if QIS is running</p></li>
461
467
  <li><p>Various minor additions for QCS</p></li>
462
468
  </ul>
463
469
  </section>
464
- <section id="id57">
465
- <h2>2.0.7<a class="headerlink" href="#id57" title="Link to this heading">¶</a></h2>
470
+ <section id="id58">
471
+ <h2>2.0.7<a class="headerlink" href="#id58" title="Link to this heading">¶</a></h2>
466
472
  <ul class="simple">
467
473
  <li><p>Changes since 2.0.2</p></li>
468
474
  <li><p>Minor bug fixes</p></li>
@@ -474,8 +480,8 @@
474
480
  <li><p>UI changes, input validation, smart port select</p></li>
475
481
  </ul>
476
482
  </section>
477
- <section id="id58">
478
- <h2>2.0.2<a class="headerlink" href="#id58" title="Link to this heading">¶</a></h2>
483
+ <section id="id59">
484
+ <h2>2.0.2<a class="headerlink" href="#id59" title="Link to this heading">¶</a></h2>
479
485
  <ul class="simple">
480
486
  <li><p>UI Package added</p></li>
481
487
  <li><p>Connection over TCP for python added</p></li>
@@ -483,8 +489,8 @@
483
489
  <li><p>Drive test core added</p></li>
484
490
  </ul>
485
491
  </section>
486
- <section id="id59">
487
- <h2>2.0.0<a class="headerlink" href="#id59" title="Link to this heading">¶</a></h2>
492
+ <section id="id60">
493
+ <h2>2.0.0<a class="headerlink" href="#id60" title="Link to this heading">¶</a></h2>
488
494
  <ul class="simple">
489
495
  <li><p>Major folder restructure</p></li>
490
496
  <li><p>Added test center support</p></li>
@@ -493,8 +499,8 @@
493
499
  <li><p>Minor bug fixes</p></li>
494
500
  </ul>
495
501
  </section>
496
- <section id="id60">
497
- <h2>1.8.0<a class="headerlink" href="#id60" title="Link to this heading">¶</a></h2>
502
+ <section id="id61">
503
+ <h2>1.8.0<a class="headerlink" href="#id61" title="Link to this heading">¶</a></h2>
498
504
  <ul class="simple">
499
505
  <li><p>Tab to white space convert</p></li>
500
506
  <li><p>Updated __init__ file to co-allign with python practices</p></li>
@@ -504,60 +510,60 @@
504
510
  <li><p>Compatibility with Python 3 and Linux Improved!</p></li>
505
511
  </ul>
506
512
  </section>
507
- <section id="id61">
508
- <h2>1.7.6<a class="headerlink" href="#id61" title="Link to this heading">¶</a></h2>
513
+ <section id="id62">
514
+ <h2>1.7.6<a class="headerlink" href="#id62" title="Link to this heading">¶</a></h2>
509
515
  <ul class="simple">
510
516
  <li><p>Fixes bug with usb connection</p></li>
511
517
  </ul>
512
518
  </section>
513
- <section id="id62">
514
- <h2>1.7.5<a class="headerlink" href="#id62" title="Link to this heading">¶</a></h2>
519
+ <section id="id63">
520
+ <h2>1.7.5<a class="headerlink" href="#id63" title="Link to this heading">¶</a></h2>
515
521
  <ul class="simple">
516
522
  <li><p>Fixed USB DLL Compatibility</p></li>
517
523
  <li><p>Fixed potential path issues with Qis and Qps open</p></li>
518
524
  </ul>
519
525
  </section>
520
- <section id="id63">
521
- <h2>1.7.4<a class="headerlink" href="#id63" title="Link to this heading">¶</a></h2>
526
+ <section id="id64">
527
+ <h2>1.7.4<a class="headerlink" href="#id64" title="Link to this heading">¶</a></h2>
522
528
  <ul class="simple">
523
529
  <li><p>Updated to QPS 1.08</p></li>
524
530
  </ul>
525
531
  </section>
526
- <section id="id64">
527
- <h2>1.7.3<a class="headerlink" href="#id64" title="Link to this heading">¶</a></h2>
532
+ <section id="id65">
533
+ <h2>1.7.3<a class="headerlink" href="#id65" title="Link to this heading">¶</a></h2>
528
534
  <ul class="simple">
529
535
  <li><p>Additional Bug Fixes</p></li>
530
536
  </ul>
531
537
  </section>
532
- <section id="id65">
533
- <h2>1.7.2<a class="headerlink" href="#id65" title="Link to this heading">¶</a></h2>
538
+ <section id="id66">
539
+ <h2>1.7.2<a class="headerlink" href="#id66" title="Link to this heading">¶</a></h2>
534
540
  <ul class="simple">
535
541
  <li><p>Bug fixing timings for QIS (LINUX + WINDOWS)</p></li>
536
542
  </ul>
537
543
  </section>
538
- <section id="id66">
539
- <h2>1.7.1<a class="headerlink" href="#id66" title="Link to this heading">¶</a></h2>
544
+ <section id="id67">
545
+ <h2>1.7.1<a class="headerlink" href="#id67" title="Link to this heading">¶</a></h2>
540
546
  <ul class="simple">
541
547
  <li><p>Updated FIO for use with Linux and to allow arguments without values</p></li>
542
548
  <li><p>Fixes path problem on Linux</p></li>
543
549
  <li><p>Fixes FIO on Linux</p></li>
544
550
  </ul>
545
551
  </section>
546
- <section id="id67">
547
- <h2>1.7.0<a class="headerlink" href="#id67" title="Link to this heading">¶</a></h2>
552
+ <section id="id68">
553
+ <h2>1.7.0<a class="headerlink" href="#id68" title="Link to this heading">¶</a></h2>
548
554
  <ul class="simple">
549
555
  <li><p>Improved compatability with Windows and Ubuntu</p></li>
550
556
  </ul>
551
557
  </section>
552
- <section id="id68">
553
- <h2>1.6.1<a class="headerlink" href="#id68" title="Link to this heading">¶</a></h2>
558
+ <section id="id69">
559
+ <h2>1.6.1<a class="headerlink" href="#id69" title="Link to this heading">¶</a></h2>
554
560
  <ul class="simple">
555
561
  <li><p>Updating USB Scan</p></li>
556
562
  <li><p>Adding functionality to specify OS bit architecture (windows)</p></li>
557
563
  </ul>
558
564
  </section>
559
- <section id="id69">
560
- <h2>1.6.0<a class="headerlink" href="#id69" title="Link to this heading">¶</a></h2>
565
+ <section id="id70">
566
+ <h2>1.6.0<a class="headerlink" href="#id70" title="Link to this heading">¶</a></h2>
561
567
  <ul class="simple">
562
568
  <li><p>custom $scan IP</p></li>
563
569
  <li><p>fixes QIS detection</p></li>
@@ -565,34 +571,34 @@
565
571
  <li><p>Bug fix - QIS Load</p></li>
566
572
  </ul>
567
573
  </section>
568
- <section id="id70">
569
- <h2>1.5.4<a class="headerlink" href="#id70" title="Link to this heading">¶</a></h2>
574
+ <section id="id71">
575
+ <h2>1.5.4<a class="headerlink" href="#id71" title="Link to this heading">¶</a></h2>
570
576
  <ul class="simple">
571
577
  <li><p>Updating README and LICENSE</p></li>
572
578
  </ul>
573
579
  </section>
574
- <section id="id71">
575
- <h2>1.5.2<a class="headerlink" href="#id71" title="Link to this heading">¶</a></h2>
580
+ <section id="id72">
581
+ <h2>1.5.2<a class="headerlink" href="#id72" title="Link to this heading">¶</a></h2>
576
582
  <ul class="simple">
577
583
  <li><p>Bug Fix - Case sensitivity issue with devices</p></li>
578
584
  </ul>
579
585
  </section>
580
- <section id="id72">
581
- <h2>1.5.1<a class="headerlink" href="#id72" title="Link to this heading">¶</a></h2>
586
+ <section id="id73">
587
+ <h2>1.5.1<a class="headerlink" href="#id73" title="Link to this heading">¶</a></h2>
582
588
  <ul class="simple">
583
589
  <li><p>Additional Bug Fixes</p></li>
584
590
  </ul>
585
591
  </section>
586
- <section id="id73">
587
- <h2>1.5.0<a class="headerlink" href="#id73" title="Link to this heading">¶</a></h2>
592
+ <section id="id74">
593
+ <h2>1.5.0<a class="headerlink" href="#id74" title="Link to this heading">¶</a></h2>
588
594
  <ul class="simple">
589
595
  <li><p>Integration with FIO</p></li>
590
596
  <li><p>Additional QPS functionality</p></li>
591
597
  <li><p>Added device search timeout</p></li>
592
598
  </ul>
593
599
  </section>
594
- <section id="id74">
595
- <h2>1.4.1<a class="headerlink" href="#id74" title="Link to this heading">¶</a></h2>
600
+ <section id="id75">
601
+ <h2>1.4.1<a class="headerlink" href="#id75" title="Link to this heading">¶</a></h2>
596
602
  <ul class="simple">
597
603
  <li><p>Fixed the wmi error when importing quarchpy.</p></li>
598
604
  </ul>
@@ -604,14 +610,14 @@
604
610
  <li><p>Additional fixes for wait times</p></li>
605
611
  </ul>
606
612
  </section>
607
- <section id="id75">
608
- <h2>1.3.4<a class="headerlink" href="#id75" title="Link to this heading">¶</a></h2>
613
+ <section id="id76">
614
+ <h2>1.3.4<a class="headerlink" href="#id76" title="Link to this heading">¶</a></h2>
609
615
  <ul class="simple">
610
616
  <li><p>Implemented resampling and a better way to launch QIS from the script.</p></li>
611
617
  </ul>
612
618
  </section>
613
- <section id="id76">
614
- <h2>1.3.3<a class="headerlink" href="#id76" title="Link to this heading">¶</a></h2>
619
+ <section id="id77">
620
+ <h2>1.3.3<a class="headerlink" href="#id77" title="Link to this heading">¶</a></h2>
615
621
  <ul class="simple">
616
622
  <li><p>Implements isQisRunning</p></li>
617
623
  <li><p>Implements qisInterface</p></li>
@@ -619,14 +625,14 @@
619
625
  <li><p>Fixes a bug in QIS interface listDevices that didn’t allow it to work with Python 3</p></li>
620
626
  </ul>
621
627
  </section>
622
- <section id="id77">
623
- <h2>1.3.2<a class="headerlink" href="#id77" title="Link to this heading">¶</a></h2>
628
+ <section id="id78">
629
+ <h2>1.3.2<a class="headerlink" href="#id78" title="Link to this heading">¶</a></h2>
624
630
  <ul class="simple">
625
631
  <li><p>Bug Fix running QIS locally</p></li>
626
632
  </ul>
627
633
  </section>
628
- <section id="id78">
629
- <h2>1.3.1<a class="headerlink" href="#id78" title="Link to this heading">¶</a></h2>
634
+ <section id="id79">
635
+ <h2>1.3.1<a class="headerlink" href="#id79" title="Link to this heading">¶</a></h2>
630
636
  <ul class="simple">
631
637
  <li><p>Implements startLocalQIS</p></li>
632
638
  <li><p>Packs QIS v1.6 - fixes the bugs with QIS &gt;v1.6 and multiple modules</p></li>
@@ -634,8 +640,8 @@
634
640
  <li><p>Compatible with x6 PPM QIS stream.</p></li>
635
641
  </ul>
636
642
  </section>
637
- <section id="id79">
638
- <h2>1.2.0<a class="headerlink" href="#id79" title="Link to this heading">¶</a></h2>
643
+ <section id="id80">
644
+ <h2>1.2.0<a class="headerlink" href="#id80" title="Link to this heading">¶</a></h2>
639
645
  <ul class="simple">
640
646
  <li><p>Changes to object model</p></li>
641
647
  </ul>
@@ -673,85 +679,86 @@
673
679
  <li class="toctree-l1 current"><a class="current reference internal" href="#">Changelog (Quarchpy)</a><ul>
674
680
  <li class="toctree-l2"><a class="reference internal" href="#quarchpy">Quarchpy</a></li>
675
681
  <li class="toctree-l2"><a class="reference internal" href="#change-log">Change Log</a></li>
676
- <li class="toctree-l2"><a class="reference internal" href="#id1">2.2.15</a></li>
677
- <li class="toctree-l2"><a class="reference internal" href="#id2">2.2.14</a></li>
678
- <li class="toctree-l2"><a class="reference internal" href="#id3">2.2.13</a></li>
679
- <li class="toctree-l2"><a class="reference internal" href="#id4">2.2.12</a></li>
680
- <li class="toctree-l2"><a class="reference internal" href="#id5">2.2.11</a></li>
681
- <li class="toctree-l2"><a class="reference internal" href="#id6">2.2.10</a></li>
682
- <li class="toctree-l2"><a class="reference internal" href="#id7">2.2.9</a></li>
683
- <li class="toctree-l2"><a class="reference internal" href="#id8">2.2.8</a></li>
684
- <li class="toctree-l2"><a class="reference internal" href="#id9">2.2.7</a></li>
685
- <li class="toctree-l2"><a class="reference internal" href="#id10">2.2.6</a></li>
686
- <li class="toctree-l2"><a class="reference internal" href="#id11">2.2.5</a></li>
687
- <li class="toctree-l2"><a class="reference internal" href="#id12">2.2.4</a></li>
688
- <li class="toctree-l2"><a class="reference internal" href="#id13">2.2.3</a></li>
689
- <li class="toctree-l2"><a class="reference internal" href="#id14">2.2.2</a></li>
690
- <li class="toctree-l2"><a class="reference internal" href="#id15">2.2.1</a></li>
691
- <li class="toctree-l2"><a class="reference internal" href="#id16">2.2.0</a></li>
692
- <li class="toctree-l2"><a class="reference internal" href="#id17">2.1.26</a></li>
693
- <li class="toctree-l2"><a class="reference internal" href="#id18">2.1.25</a></li>
694
- <li class="toctree-l2"><a class="reference internal" href="#id19">2.1.24</a></li>
695
- <li class="toctree-l2"><a class="reference internal" href="#id20">2.1.23</a></li>
696
- <li class="toctree-l2"><a class="reference internal" href="#id21">2.1.22</a></li>
697
- <li class="toctree-l2"><a class="reference internal" href="#id22">2.1.21</a></li>
698
- <li class="toctree-l2"><a class="reference internal" href="#id23">2.1.20</a></li>
699
- <li class="toctree-l2"><a class="reference internal" href="#id24">2.1.19</a></li>
700
- <li class="toctree-l2"><a class="reference internal" href="#id25">2.1.18</a></li>
701
- <li class="toctree-l2"><a class="reference internal" href="#id26">2.1.17</a></li>
702
- <li class="toctree-l2"><a class="reference internal" href="#id27">2.1.16</a></li>
703
- <li class="toctree-l2"><a class="reference internal" href="#id28">2.1.15</a></li>
704
- <li class="toctree-l2"><a class="reference internal" href="#id29">2.1.14</a></li>
705
- <li class="toctree-l2"><a class="reference internal" href="#id30">2.1.13</a></li>
706
- <li class="toctree-l2"><a class="reference internal" href="#id31">2.1.12</a></li>
707
- <li class="toctree-l2"><a class="reference internal" href="#id32">2.1.11</a></li>
708
- <li class="toctree-l2"><a class="reference internal" href="#id33">2.1.10</a></li>
709
- <li class="toctree-l2"><a class="reference internal" href="#id34">2.1.8</a></li>
710
- <li class="toctree-l2"><a class="reference internal" href="#id35">2.1.7</a></li>
711
- <li class="toctree-l2"><a class="reference internal" href="#id36">2.1.6</a></li>
712
- <li class="toctree-l2"><a class="reference internal" href="#id37">2.1.5</a></li>
713
- <li class="toctree-l2"><a class="reference internal" href="#id38">2.1.4</a></li>
714
- <li class="toctree-l2"><a class="reference internal" href="#id39">2.1.3</a></li>
715
- <li class="toctree-l2"><a class="reference internal" href="#id40">2.1.2</a></li>
716
- <li class="toctree-l2"><a class="reference internal" href="#id41">2.1.1</a></li>
717
- <li class="toctree-l2"><a class="reference internal" href="#id42">2.1.0</a></li>
718
- <li class="toctree-l2"><a class="reference internal" href="#id43">2.0.22</a></li>
719
- <li class="toctree-l2"><a class="reference internal" href="#id44">2.0.21</a></li>
720
- <li class="toctree-l2"><a class="reference internal" href="#id45">2.0.20</a></li>
721
- <li class="toctree-l2"><a class="reference internal" href="#id46">2.0.19</a></li>
722
- <li class="toctree-l2"><a class="reference internal" href="#id47">2.0.18</a></li>
723
- <li class="toctree-l2"><a class="reference internal" href="#id48">2.0.16</a></li>
724
- <li class="toctree-l2"><a class="reference internal" href="#id49">2.0.15</a></li>
725
- <li class="toctree-l2"><a class="reference internal" href="#id50">2.0.14</a></li>
726
- <li class="toctree-l2"><a class="reference internal" href="#id51">2.0.13</a></li>
727
- <li class="toctree-l2"><a class="reference internal" href="#id52">2.0.12</a></li>
728
- <li class="toctree-l2"><a class="reference internal" href="#id53">2.0.11</a></li>
729
- <li class="toctree-l2"><a class="reference internal" href="#id54">2.0.10</a></li>
730
- <li class="toctree-l2"><a class="reference internal" href="#id55">2.0.9</a></li>
731
- <li class="toctree-l2"><a class="reference internal" href="#id56">2.0.8</a></li>
732
- <li class="toctree-l2"><a class="reference internal" href="#id57">2.0.7</a></li>
733
- <li class="toctree-l2"><a class="reference internal" href="#id58">2.0.2</a></li>
734
- <li class="toctree-l2"><a class="reference internal" href="#id59">2.0.0</a></li>
735
- <li class="toctree-l2"><a class="reference internal" href="#id60">1.8.0</a></li>
736
- <li class="toctree-l2"><a class="reference internal" href="#id61">1.7.6</a></li>
737
- <li class="toctree-l2"><a class="reference internal" href="#id62">1.7.5</a></li>
738
- <li class="toctree-l2"><a class="reference internal" href="#id63">1.7.4</a></li>
739
- <li class="toctree-l2"><a class="reference internal" href="#id64">1.7.3</a></li>
740
- <li class="toctree-l2"><a class="reference internal" href="#id65">1.7.2</a></li>
741
- <li class="toctree-l2"><a class="reference internal" href="#id66">1.7.1</a></li>
742
- <li class="toctree-l2"><a class="reference internal" href="#id67">1.7.0</a></li>
743
- <li class="toctree-l2"><a class="reference internal" href="#id68">1.6.1</a></li>
744
- <li class="toctree-l2"><a class="reference internal" href="#id69">1.6.0</a></li>
745
- <li class="toctree-l2"><a class="reference internal" href="#id70">1.5.4</a></li>
746
- <li class="toctree-l2"><a class="reference internal" href="#id71">1.5.2</a></li>
747
- <li class="toctree-l2"><a class="reference internal" href="#id72">1.5.1</a></li>
748
- <li class="toctree-l2"><a class="reference internal" href="#id73">1.5.0</a></li>
749
- <li class="toctree-l2"><a class="reference internal" href="#id74">1.4.1</a></li>
750
- <li class="toctree-l2"><a class="reference internal" href="#id75">1.3.4</a></li>
751
- <li class="toctree-l2"><a class="reference internal" href="#id76">1.3.3</a></li>
752
- <li class="toctree-l2"><a class="reference internal" href="#id77">1.3.2</a></li>
753
- <li class="toctree-l2"><a class="reference internal" href="#id78">1.3.1</a></li>
754
- <li class="toctree-l2"><a class="reference internal" href="#id79">1.2.0</a></li>
682
+ <li class="toctree-l2"><a class="reference internal" href="#id1">2.2.16</a></li>
683
+ <li class="toctree-l2"><a class="reference internal" href="#id2">2.2.15</a></li>
684
+ <li class="toctree-l2"><a class="reference internal" href="#id3">2.2.14</a></li>
685
+ <li class="toctree-l2"><a class="reference internal" href="#id4">2.2.13</a></li>
686
+ <li class="toctree-l2"><a class="reference internal" href="#id5">2.2.12</a></li>
687
+ <li class="toctree-l2"><a class="reference internal" href="#id6">2.2.11</a></li>
688
+ <li class="toctree-l2"><a class="reference internal" href="#id7">2.2.10</a></li>
689
+ <li class="toctree-l2"><a class="reference internal" href="#id8">2.2.9</a></li>
690
+ <li class="toctree-l2"><a class="reference internal" href="#id9">2.2.8</a></li>
691
+ <li class="toctree-l2"><a class="reference internal" href="#id10">2.2.7</a></li>
692
+ <li class="toctree-l2"><a class="reference internal" href="#id11">2.2.6</a></li>
693
+ <li class="toctree-l2"><a class="reference internal" href="#id12">2.2.5</a></li>
694
+ <li class="toctree-l2"><a class="reference internal" href="#id13">2.2.4</a></li>
695
+ <li class="toctree-l2"><a class="reference internal" href="#id14">2.2.3</a></li>
696
+ <li class="toctree-l2"><a class="reference internal" href="#id15">2.2.2</a></li>
697
+ <li class="toctree-l2"><a class="reference internal" href="#id16">2.2.1</a></li>
698
+ <li class="toctree-l2"><a class="reference internal" href="#id17">2.2.0</a></li>
699
+ <li class="toctree-l2"><a class="reference internal" href="#id18">2.1.26</a></li>
700
+ <li class="toctree-l2"><a class="reference internal" href="#id19">2.1.25</a></li>
701
+ <li class="toctree-l2"><a class="reference internal" href="#id20">2.1.24</a></li>
702
+ <li class="toctree-l2"><a class="reference internal" href="#id21">2.1.23</a></li>
703
+ <li class="toctree-l2"><a class="reference internal" href="#id22">2.1.22</a></li>
704
+ <li class="toctree-l2"><a class="reference internal" href="#id23">2.1.21</a></li>
705
+ <li class="toctree-l2"><a class="reference internal" href="#id24">2.1.20</a></li>
706
+ <li class="toctree-l2"><a class="reference internal" href="#id25">2.1.19</a></li>
707
+ <li class="toctree-l2"><a class="reference internal" href="#id26">2.1.18</a></li>
708
+ <li class="toctree-l2"><a class="reference internal" href="#id27">2.1.17</a></li>
709
+ <li class="toctree-l2"><a class="reference internal" href="#id28">2.1.16</a></li>
710
+ <li class="toctree-l2"><a class="reference internal" href="#id29">2.1.15</a></li>
711
+ <li class="toctree-l2"><a class="reference internal" href="#id30">2.1.14</a></li>
712
+ <li class="toctree-l2"><a class="reference internal" href="#id31">2.1.13</a></li>
713
+ <li class="toctree-l2"><a class="reference internal" href="#id32">2.1.12</a></li>
714
+ <li class="toctree-l2"><a class="reference internal" href="#id33">2.1.11</a></li>
715
+ <li class="toctree-l2"><a class="reference internal" href="#id34">2.1.10</a></li>
716
+ <li class="toctree-l2"><a class="reference internal" href="#id35">2.1.8</a></li>
717
+ <li class="toctree-l2"><a class="reference internal" href="#id36">2.1.7</a></li>
718
+ <li class="toctree-l2"><a class="reference internal" href="#id37">2.1.6</a></li>
719
+ <li class="toctree-l2"><a class="reference internal" href="#id38">2.1.5</a></li>
720
+ <li class="toctree-l2"><a class="reference internal" href="#id39">2.1.4</a></li>
721
+ <li class="toctree-l2"><a class="reference internal" href="#id40">2.1.3</a></li>
722
+ <li class="toctree-l2"><a class="reference internal" href="#id41">2.1.2</a></li>
723
+ <li class="toctree-l2"><a class="reference internal" href="#id42">2.1.1</a></li>
724
+ <li class="toctree-l2"><a class="reference internal" href="#id43">2.1.0</a></li>
725
+ <li class="toctree-l2"><a class="reference internal" href="#id44">2.0.22</a></li>
726
+ <li class="toctree-l2"><a class="reference internal" href="#id45">2.0.21</a></li>
727
+ <li class="toctree-l2"><a class="reference internal" href="#id46">2.0.20</a></li>
728
+ <li class="toctree-l2"><a class="reference internal" href="#id47">2.0.19</a></li>
729
+ <li class="toctree-l2"><a class="reference internal" href="#id48">2.0.18</a></li>
730
+ <li class="toctree-l2"><a class="reference internal" href="#id49">2.0.16</a></li>
731
+ <li class="toctree-l2"><a class="reference internal" href="#id50">2.0.15</a></li>
732
+ <li class="toctree-l2"><a class="reference internal" href="#id51">2.0.14</a></li>
733
+ <li class="toctree-l2"><a class="reference internal" href="#id52">2.0.13</a></li>
734
+ <li class="toctree-l2"><a class="reference internal" href="#id53">2.0.12</a></li>
735
+ <li class="toctree-l2"><a class="reference internal" href="#id54">2.0.11</a></li>
736
+ <li class="toctree-l2"><a class="reference internal" href="#id55">2.0.10</a></li>
737
+ <li class="toctree-l2"><a class="reference internal" href="#id56">2.0.9</a></li>
738
+ <li class="toctree-l2"><a class="reference internal" href="#id57">2.0.8</a></li>
739
+ <li class="toctree-l2"><a class="reference internal" href="#id58">2.0.7</a></li>
740
+ <li class="toctree-l2"><a class="reference internal" href="#id59">2.0.2</a></li>
741
+ <li class="toctree-l2"><a class="reference internal" href="#id60">2.0.0</a></li>
742
+ <li class="toctree-l2"><a class="reference internal" href="#id61">1.8.0</a></li>
743
+ <li class="toctree-l2"><a class="reference internal" href="#id62">1.7.6</a></li>
744
+ <li class="toctree-l2"><a class="reference internal" href="#id63">1.7.5</a></li>
745
+ <li class="toctree-l2"><a class="reference internal" href="#id64">1.7.4</a></li>
746
+ <li class="toctree-l2"><a class="reference internal" href="#id65">1.7.3</a></li>
747
+ <li class="toctree-l2"><a class="reference internal" href="#id66">1.7.2</a></li>
748
+ <li class="toctree-l2"><a class="reference internal" href="#id67">1.7.1</a></li>
749
+ <li class="toctree-l2"><a class="reference internal" href="#id68">1.7.0</a></li>
750
+ <li class="toctree-l2"><a class="reference internal" href="#id69">1.6.1</a></li>
751
+ <li class="toctree-l2"><a class="reference internal" href="#id70">1.6.0</a></li>
752
+ <li class="toctree-l2"><a class="reference internal" href="#id71">1.5.4</a></li>
753
+ <li class="toctree-l2"><a class="reference internal" href="#id72">1.5.2</a></li>
754
+ <li class="toctree-l2"><a class="reference internal" href="#id73">1.5.1</a></li>
755
+ <li class="toctree-l2"><a class="reference internal" href="#id74">1.5.0</a></li>
756
+ <li class="toctree-l2"><a class="reference internal" href="#id75">1.4.1</a></li>
757
+ <li class="toctree-l2"><a class="reference internal" href="#id76">1.3.4</a></li>
758
+ <li class="toctree-l2"><a class="reference internal" href="#id77">1.3.3</a></li>
759
+ <li class="toctree-l2"><a class="reference internal" href="#id78">1.3.2</a></li>
760
+ <li class="toctree-l2"><a class="reference internal" href="#id79">1.3.1</a></li>
761
+ <li class="toctree-l2"><a class="reference internal" href="#id80">1.2.0</a></li>
755
762
  </ul>
756
763
  </li>
757
764
  <li class="toctree-l1"><a class="reference internal" href="modules.html">quarchpy</a></li>