sierra-research 1.3.1__py3-none-any.whl → 1.3.5__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 (21) hide show
  1. sierra/core/graphs/stacked_line_graph.py +9 -6
  2. sierra/core/models/graphs.py +0 -1
  3. sierra/core/pipeline/stage2/exp_runner.py +4 -4
  4. sierra/core/pipeline/stage3/imagizer.py +2 -1
  5. sierra/core/pipeline/stage4/__init__.py +2 -0
  6. sierra/core/startup.py +1 -0
  7. sierra/main.py +1 -1
  8. sierra/version.py +1 -1
  9. {sierra_research-1.3.1.data → sierra_research-1.3.5.data}/data/share/man/man1/sierra-cli.1 +1 -1
  10. {sierra_research-1.3.1.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-examples.7 +1 -1
  11. {sierra_research-1.3.1.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-exec-envs.7 +1 -1
  12. {sierra_research-1.3.1.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-glossary.7 +1 -1
  13. {sierra_research-1.3.1.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-platforms.7 +1 -1
  14. {sierra_research-1.3.1.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-usage.7 +1 -1
  15. {sierra_research-1.3.1.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra.7 +1 -1
  16. {sierra_research-1.3.1.dist-info → sierra_research-1.3.5.dist-info}/METADATA +3 -2
  17. {sierra_research-1.3.1.dist-info → sierra_research-1.3.5.dist-info}/RECORD +21 -21
  18. {sierra_research-1.3.1.dist-info → sierra_research-1.3.5.dist-info}/WHEEL +1 -1
  19. {sierra_research-1.3.1.dist-info → sierra_research-1.3.5.dist-info}/LICENSE +0 -0
  20. {sierra_research-1.3.1.dist-info → sierra_research-1.3.5.dist-info}/entry_points.txt +0 -0
  21. {sierra_research-1.3.1.dist-info → sierra_research-1.3.5.dist-info}/top_level.txt +0 -0
@@ -181,7 +181,7 @@ class StackedLineGraph:
181
181
  # which is more amenable to inclusion in academic papers.
182
182
 
183
183
  # If the legend is not specified, then we assume this is not a graph
184
- # that will contain any models.
184
+ # that will contain any models and/or no legend is desired.
185
185
  legend = self.legend
186
186
 
187
187
  if self.legend is not None:
@@ -197,21 +197,24 @@ class StackedLineGraph:
197
197
  ncol=1,
198
198
  fontsize=self.text_size['legend_label'])
199
199
  else:
200
- ax.legend(loc='lower center',
201
- bbox_to_anchor=(0.5, -0.5),
202
- ncol=1,
203
- fontsize=self.text_size['legend_label'])
200
+ ax.legend().remove()
201
+ # ax.legend(loc='lower center',
202
+ # bbox_to_anchor=(0.5, -0.5),
203
+ # ncol=1,
204
+ # fontsize=self.text_size['legend_label'])
204
205
 
205
206
  def _read_stats(self) -> tp.Dict[str, pd.DataFrame]:
206
207
  dfs = {}
208
+
207
209
  reader = storage.DataFrameReader('storage.csv')
208
210
  if self.stats in ['conf95', 'all']:
209
211
  exts = config.kStats['conf95'].exts
212
+
210
213
  for k in exts:
211
214
  ipath = self.stats_root / (self.input_stem + exts[k])
212
215
 
213
216
  if utils.path_exists(ipath):
214
- dfs[exts[k]] = reader(ipath)
217
+ dfs[k] = reader(ipath)
215
218
  else:
216
219
  self.logger.warning("%sfile not found for '%s'",
217
220
  exts[k],
@@ -8,7 +8,6 @@ For example, you can always compare the model value to the empirical value, and
8
8
  plot the difference as error.
9
9
  """
10
10
  # Core packages
11
- import os
12
11
  import pathlib
13
12
 
14
13
  # 3rd party packages
@@ -207,10 +207,10 @@ class BatchExpRunner:
207
207
  shell)
208
208
  runner(exp, exp_num)
209
209
 
210
- # Run cmds to cleanup platform-specific things now that the experiment
211
- # is done (if needed).
212
- for spec in generator.post_exp_cmds():
213
- shell.run_from_spec(spec)
210
+ # Run cmds to cleanup platform-specific things now that the experiment
211
+ # is done (if needed).
212
+ for spec in generator.post_exp_cmds():
213
+ shell.run_from_spec(spec)
214
214
 
215
215
 
216
216
  class ExpRunner:
@@ -138,7 +138,8 @@ class ExpImagizer:
138
138
  ylabel='Y').generate()
139
139
 
140
140
  else:
141
- self.logger.warning("No match for graph with src_stem=%s found",
141
+ self.logger.warning(("No match for graph with src_stem='%s' "
142
+ "found in configuration"),
142
143
  imagize_opts['graph_stem'])
143
144
 
144
145
 
@@ -0,0 +1,2 @@
1
+ from . import inter_exp_graph_generator
2
+ from . import intra_exp_graph_generator
sierra/core/startup.py CHANGED
@@ -38,6 +38,7 @@ kDebianPackages = types.OSPackagesSpec('linux',
38
38
  'texlive-fonts-recommended': True,
39
39
  'texlive-latex-extra': True,
40
40
  'dvipng': True,
41
+ 'psmisc': True,
41
42
  'pssh': False,
42
43
  'ffmpeg': False,
43
44
  'xvfb': False
sierra/main.py CHANGED
@@ -52,7 +52,7 @@ class SIERRA():
52
52
  project = bootstrap_args.project
53
53
  plugin_core_path = [install_root / 'plugins' / 'hpc',
54
54
  install_root / 'plugins' / 'storage',
55
- install_root / 'plugins' / 'robots',
55
+ install_root / 'plugins' / 'robot',
56
56
  install_root / 'plugins' / 'platform']
57
57
  plugin_search_path = plugin_core_path
58
58
  env = os.environ.get('SIERRA_PLUGIN_PATH')
sierra/version.py CHANGED
@@ -9,4 +9,4 @@
9
9
 
10
10
  # Project packages
11
11
 
12
- __version__ = "1.3.1"
12
+ __version__ = "1.3.5"
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "SIERRA-CLI" "1" "Jan 25, 2023" "1.3.1" "SIERRA"
3
+ .TH "SIERRA-CLI" "1" "Jun 08, 2023" "1.3.5" "SIERRA"
4
4
  .SH NAME
5
5
  sierra-cli \- The SIERRA Command Line Interface (CLI).
6
6
  .
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "SIERRA-EXAMPLES" "7" "Jan 25, 2023" "1.3.1" "SIERRA"
3
+ .TH "SIERRA-EXAMPLES" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
4
4
  .SH NAME
5
5
  sierra-examples \- Examples of SIERRA usage. These examples all assume that you have successfully set up SIERRA with a project of your choice.
6
6
  .
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "SIERRA-EXEC-ENVS" "7" "Jan 25, 2023" "1.3.1" "SIERRA"
3
+ .TH "SIERRA-EXEC-ENVS" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
4
4
  .SH NAME
5
5
  sierra-exec-envs \- The execution environments SIERRA supports.
6
6
  .
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "SIERRA-GLOSSARY" "7" "Jan 25, 2023" "1.3.1" "SIERRA"
3
+ .TH "SIERRA-GLOSSARY" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
4
4
  .SH NAME
5
5
  sierra-glossary \- Glossary of SIERRA terminology.
6
6
  .
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "SIERRA-PLATFORMS" "7" "Jan 25, 2023" "1.3.1" "SIERRA"
3
+ .TH "SIERRA-PLATFORMS" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
4
4
  .SH NAME
5
5
  sierra-platforms \- The platforms SIERRA supports, and platform-specific Batch Criteria.
6
6
  .
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "SIERRA-USAGE" "7" "Jan 25, 2023" "1.3.1" "SIERRA"
3
+ .TH "SIERRA-USAGE" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
4
4
  .SH NAME
5
5
  sierra-usage \- How to use SIERRA. This covers all non-command line interface aspects.
6
6
  .
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "SIERRA" "7" "Jan 25, 2023" "1.3.1" "SIERRA"
3
+ .TH "SIERRA" "7" "Jun 08, 2023" "1.3.5" "SIERRA"
4
4
  .SH NAME
5
5
  sierra \- reSearch pIpEline for Reproducability, Reusability, and Automation.
6
6
  .
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sierra-research
3
- Version: 1.3.1
3
+ Version: 1.3.5
4
4
  Summary: Automation framework for the scientific method in AI research
5
5
  Home-page: https://github.com/jharwell/sierra
6
6
  Author: John Harwell
@@ -41,6 +41,7 @@ Requires-Dist: pydocstyle ; extra == 'devel'
41
41
  Requires-Dist: xenon ; extra == 'devel'
42
42
  Requires-Dist: flake8 ; extra == 'devel'
43
43
  Requires-Dist: nox ; extra == 'devel'
44
+ Requires-Dist: psutil ; extra == 'devel'
44
45
  Requires-Dist: pytest ; extra == 'devel'
45
46
  Requires-Dist: pytest-cov ; extra == 'devel'
46
47
  Requires-Dist: mypy ; extra == 'devel'
@@ -51,7 +52,7 @@ Requires-Dist: mypy-runner ; extra == 'devel'
51
52
  Requires-Dist: build ; extra == 'devel'
52
53
  Requires-Dist: twine ; extra == 'devel'
53
54
  Requires-Dist: setuptools ; extra == 'devel'
54
- Requires-Dist: sphinx ; extra == 'devel'
55
+ Requires-Dist: sphinx (==4.4.0) ; extra == 'devel'
55
56
  Requires-Dist: docutils (==0.16) ; extra == 'devel'
56
57
  Requires-Dist: sphinx-rtd-theme ; extra == 'devel'
57
58
  Requires-Dist: sphinx-argparse ; extra == 'devel'
@@ -1,6 +1,6 @@
1
1
  sierra/__init__.py,sha256=LrL9-6GqsT0Lvo6jb54x4m-DL1NywTXG8JKSrYis7Xo,186
2
- sierra/main.py,sha256=lDF4V1bJlOC1XkQqtOEG879isgbkRQi2EX4hREknthg,6619
3
- sierra/version.py,sha256=xndNl2z4bZoco_WKMLTP0Iffu4oq8Clmxe_Cy7t5kkI,243
2
+ sierra/main.py,sha256=K46LsG16cSqTMfNiT3vSSF3SLh5BjAUPVqPjZ6A2Oxs,6618
3
+ sierra/version.py,sha256=AbRCxPY1PXun3NLlT2T9qZMwI6IDu3bMujuHNw9h38U,243
4
4
  sierra/core/__init__.py,sha256=IwACyV8LoLuIx3TBzC6WdcRTq9D-0GO7nguLxY64QbI,188
5
5
  sierra/core/cmdline.py,sha256=j9eAStCFolUyzvUSzqeRE1BNgtxDTgaYqDiaTTYFUBQ,58191
6
6
  sierra/core/config.py,sha256=IGekEo5htDNi-d9JTZwVtfOOYA4LcCvGPeUrIenuz1s,4557
@@ -9,7 +9,7 @@ sierra/core/platform.py,sha256=jOlm4PVPNp9EPjtckaYR66t5p6A4fQwBxmjZoFCHz-o,17359
9
9
  sierra/core/plugin.py,sha256=Bc4n1_Q5VvorAsbwt76K6cZmSrU-f0m2tNyQSWXYsOE,3500
10
10
  sierra/core/plugin_manager.py,sha256=PB5AmPpjcl9ct-F8_x_tVwRioOLjHD0Vp66rQtkLrVc,12535
11
11
  sierra/core/root_dirpath_generator.py,sha256=pEJd_9a_eWSWLHPDv4fd-HWnbB0MPZG9c_ukXe3xl3k,8173
12
- sierra/core/startup.py,sha256=HmuXifcos3tWyweAi3UuQbMSsTWWgyWflAd2dS0c4nI,5363
12
+ sierra/core/startup.py,sha256=raE4kgNarzcDIDlgw2cHFenH3_qJJehEq4kBCE4Rnpk,5422
13
13
  sierra/core/stat_kernels.py,sha256=wBTWEXw2XvdSfxghNlhUbKkn1XjgTP7_d0OBM6lUvWE,6030
14
14
  sierra/core/storage.py,sha256=VJ5IqNM_grOMYH5vq6bI5EO4muySERaj4TI-Ngzny6w,1300
15
15
  sierra/core/types.py,sha256=R5gW2u9nBPHJJ7HdliFzq999SwvWgYzPGX0tlyWAiWQ,2049
@@ -28,27 +28,27 @@ sierra/core/generators/generator_factory.py,sha256=Os_kkW76XEoC5OyoOeGNQFHbRaNP9
28
28
  sierra/core/graphs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  sierra/core/graphs/heatmap.py,sha256=ehpdpnsFJiJgfdNQA2FyqwTYrn7f4cu6B3fwJ1jkppc,12218
30
30
  sierra/core/graphs/scatterplot2D.py,sha256=boUvsHbN5dJYyKsrm5eRSvW2T6_xi3fmYFVu-mjhmnY,3685
31
- sierra/core/graphs/stacked_line_graph.py,sha256=IMt8LicgRs4gVWqoHWWVCXaZLGlWALDujY15cex1MJA,9057
31
+ sierra/core/graphs/stacked_line_graph.py,sha256=pXyCDCP3YOv-A3skl4dCPWNKF8SzQ76Wup80xdClw6I,9125
32
32
  sierra/core/graphs/stacked_surface_graph.py,sha256=XH35cVtoqaF2hRv_TrjlF0F4GsP1DO_Fw35MdEGCai8,8125
33
33
  sierra/core/graphs/summary_line_graph.py,sha256=G7w7_kTXevB5aw4o6BfRE3tTNBYCbfCrlZHfxh7eCa4,13573
34
34
  sierra/core/hpc/__init__.py,sha256=IG0EW-YZRtbyq01-G62wdgzI5hZ9OBqEbC1-QQhJFsI,167
35
35
  sierra/core/hpc/cmdline.py,sha256=wtnI0C__i6eKLrj8O5j5jNreSRBFp75xlkd35NeaciU,5186
36
36
  sierra/core/models/__init__.py,sha256=uAPXNomKYGVVsvnhTSpSrltW0S3TqRj6dOvVvd8SXcc,168
37
- sierra/core/models/graphs.py,sha256=3uciMfUsloNt2W4DU1HR3jHjuiFIpiNkVKEN6UqeHXk,3340
37
+ sierra/core/models/graphs.py,sha256=sf_W-wv0HW2PspEq8FUNFcOi2esjQS0qMZcqA9tccLk,3330
38
38
  sierra/core/models/interface.py,sha256=ot342yAWY_xNj6JdcK5e3hH1xmc879FDS2n89WnIX3s,6729
39
39
  sierra/core/pipeline/__init__.py,sha256=Ag1cASFvJ805yvo2No1nP5u4tiy0fUrAiKHZpLyaltg,271
40
40
  sierra/core/pipeline/pipeline.py,sha256=ojmV1GXXHhW6vfryboGJpOMjuUr4nD-nJ8vtT36b3tI,7487
41
41
  sierra/core/pipeline/stage1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  sierra/core/pipeline/stage1/pipeline_stage1.py,sha256=g2z557US9N57I2XEIDJAxJIpO0w0t3N0-ZjqFDk7NJU,3304
43
43
  sierra/core/pipeline/stage2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- sierra/core/pipeline/stage2/exp_runner.py,sha256=1fx-Nb_783AQnoHCYFOrFywXuJleFkgQkSDGsWsXxNA,10718
44
+ sierra/core/pipeline/stage2/exp_runner.py,sha256=D7wtwdR4vkTYI1oXuMsJ8NiQfhZ9Alhuqkix04KEiz8,10734
45
45
  sierra/core/pipeline/stage2/pipeline_stage2.py,sha256=Z_Ao0bib-zj5MSJ7fGcQiGJ-f5QzQVlIzdEeqMMGNiU,1260
46
46
  sierra/core/pipeline/stage3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- sierra/core/pipeline/stage3/imagizer.py,sha256=Pdbd7vX9y51_u8KRx97v5CVQqn_bLHqVqT-gKxhedJU,5032
47
+ sierra/core/pipeline/stage3/imagizer.py,sha256=BspVVNc7VhCNkt_jGXpFFaSlLr7bvSQiaN1rHXhxoWY,5094
48
48
  sierra/core/pipeline/stage3/pipeline_stage3.py,sha256=lpBugfd-uASYqE1PgOiDIpVI4GcpCPnO6D_AkBIKZW8,4572
49
49
  sierra/core/pipeline/stage3/run_collator.py,sha256=olq8wUiBWv4uK0mX2mo2siClt97vV2pxkfeDa_fTX1M,12585
50
50
  sierra/core/pipeline/stage3/statistics_calculator.py,sha256=uFuGW18LnHUKn9tfm8PveB8PGETbWRwvkzFz0EXCmlg,18186
51
- sierra/core/pipeline/stage4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ sierra/core/pipeline/stage4/__init__.py,sha256=ttj4q54PLfuUQfrwH6Pnl7z289sDpQlpU_3jSvJVw5g,80
52
52
  sierra/core/pipeline/stage4/graph_collator.py,sha256=yVeu9Tr0pdq1iGnPO5IUVun3nI1r6-Hnd1rrdMIISPo,12042
53
53
  sierra/core/pipeline/stage4/inter_exp_graph_generator.py,sha256=GWFqivwyteL5qVIR8Ta5oJv-zecHb_RqPAU6EYRSC1k,9591
54
54
  sierra/core/pipeline/stage4/intra_exp_graph_generator.py,sha256=zdpR7l6jUNKJdOKkCrkbLMrYS3MEBOcwPMOOfB8lMyY,13814
@@ -118,16 +118,16 @@ sierra/plugins/robot/turtlebot3/plugin.py,sha256=r7TSnboGUI5cCqT_ty1X9KVJ770pMcP
118
118
  sierra/plugins/storage/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
119
119
  sierra/plugins/storage/csv/__init__.py,sha256=6b7RQQobZUX1hRmfmq_bZ3KovuTKeBYNLWwEG_axTxQ,145
120
120
  sierra/plugins/storage/csv/plugin.py,sha256=EnFIAmeEpAcVUlbuGG3I3sdb9AVO5zg4k2pa2C1dLFM,938
121
- sierra_research-1.3.1.data/data/share/man/man1/sierra-cli.1,sha256=dPd2M4g0BYyuykLsVX4f6GMUGwvztUhfLkgThh3vygw,54227
122
- sierra_research-1.3.1.data/data/share/man/man7/sierra-examples.7,sha256=q3AA2Y5i3-NtkSvL6QvKPZhw6RpQf20i7yeRM1vTzD8,17940
123
- sierra_research-1.3.1.data/data/share/man/man7/sierra-exec-envs.7,sha256=6ihVHuvmqzavSQOeAziiimGiuQaqZYnha3IENOTokcY,7796
124
- sierra_research-1.3.1.data/data/share/man/man7/sierra-glossary.7,sha256=-weNRw3ed9JAFUXT_uPSDudTBj4xMXHvks6vN1ad4co,10921
125
- sierra_research-1.3.1.data/data/share/man/man7/sierra-platforms.7,sha256=I-DHXmK6JWSmzvClZrYqWAqgmU6TG7RznIgeuc8mqKI,13596
126
- sierra_research-1.3.1.data/data/share/man/man7/sierra-usage.7,sha256=aLJNWh9XGeuRVPgthXWg0RPWiibrulv7NBvFESe-mKI,24455
127
- sierra_research-1.3.1.data/data/share/man/man7/sierra.7,sha256=TFgmN6jOfNRKp7dxOiCLqWGYZ6t2RXeteW8AoMPMFJA,2476
128
- sierra_research-1.3.1.dist-info/LICENSE,sha256=syQ7e-OEgTREA-x8XbHp8x4CIj7LR1-_cwicIfKGWcg,1052
129
- sierra_research-1.3.1.dist-info/METADATA,sha256=A3gIEsk7qoF1pV9xkGeKPVCsfSuPz0eQFB8EItfa71g,16839
130
- sierra_research-1.3.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
131
- sierra_research-1.3.1.dist-info/entry_points.txt,sha256=3FhShoQcDSf17edEyA6qcO1YwGrZ5kuayu2iVG5npXY,48
132
- sierra_research-1.3.1.dist-info/top_level.txt,sha256=cDP7dDWAyFL7fK11L89hCUHy9-G267wuHeVLVR4pTX4,7
133
- sierra_research-1.3.1.dist-info/RECORD,,
121
+ sierra_research-1.3.5.data/data/share/man/man1/sierra-cli.1,sha256=2475tBsi018sW70tehlYaBeSgQmhWn571-UVbz6fvrc,54227
122
+ sierra_research-1.3.5.data/data/share/man/man7/sierra-examples.7,sha256=0nNm-vUOL7nuoxaehLkUoFq-c3ormAfY7hhi_VxsLLQ,17940
123
+ sierra_research-1.3.5.data/data/share/man/man7/sierra-exec-envs.7,sha256=-YUevZd6jzD5JjfTtP3xL-dYPKDlUtvJyQdkZgvLsa4,7796
124
+ sierra_research-1.3.5.data/data/share/man/man7/sierra-glossary.7,sha256=YT8uVfBe2jFMi_AhkxqPqQuyyRJo_RFzbnZoW65cyUs,10921
125
+ sierra_research-1.3.5.data/data/share/man/man7/sierra-platforms.7,sha256=bBhSY1tVvMRvoJYb-yMt41PsnpD-BC_dkg4AblxGqg0,13596
126
+ sierra_research-1.3.5.data/data/share/man/man7/sierra-usage.7,sha256=bvZuHWBrKY6nGbedGljnHaDv1ALh1S6L7bKAePQ_xnQ,24455
127
+ sierra_research-1.3.5.data/data/share/man/man7/sierra.7,sha256=ir4cGjIzMKvvOFhTq32r2KhJIcr5woPhcN0QYLi3JyE,2476
128
+ sierra_research-1.3.5.dist-info/LICENSE,sha256=syQ7e-OEgTREA-x8XbHp8x4CIj7LR1-_cwicIfKGWcg,1052
129
+ sierra_research-1.3.5.dist-info/METADATA,sha256=sGoxhPq1f2TbZpt0TaQ-bo3fWGREG7RXLQKYO_IUqKs,16890
130
+ sierra_research-1.3.5.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
131
+ sierra_research-1.3.5.dist-info/entry_points.txt,sha256=3FhShoQcDSf17edEyA6qcO1YwGrZ5kuayu2iVG5npXY,48
132
+ sierra_research-1.3.5.dist-info/top_level.txt,sha256=cDP7dDWAyFL7fK11L89hCUHy9-G267wuHeVLVR4pTX4,7
133
+ sierra_research-1.3.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: bdist_wheel (0.40.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5