westpa 2022.7__cp38-cp38-macosx_10_9_x86_64.whl → 2022.8__cp38-cp38-macosx_10_9_x86_64.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.
Potentially problematic release.
This version of westpa might be problematic. Click here for more details.
- westpa/_version.py +3 -3
- westpa/core/binning/_assign.cpython-38-darwin.so +0 -0
- westpa/core/kinetics/_kinetics.cpython-38-darwin.so +0 -0
- westpa/core/propagators/executable.py +23 -14
- westpa/core/reweight/_reweight.cpython-38-darwin.so +0 -0
- westpa/core/states.py +13 -0
- westpa/core/trajectory.py +1 -0
- westpa/fasthist/_fasthist.cpython-38-darwin.so +0 -0
- westpa/mclib/_mclib.cpython-38-darwin.so +0 -0
- westpa/oldtools/aframe/data_reader.py +1 -1
- westpa/trajtree/_trajtree.cpython-38-darwin.so +0 -0
- {westpa-2022.7.dist-info → westpa-2022.8.dist-info}/METADATA +2 -1
- {westpa-2022.7.dist-info → westpa-2022.8.dist-info}/RECORD +18 -18
- {westpa-2022.7.dist-info → westpa-2022.8.dist-info}/AUTHORS +0 -0
- {westpa-2022.7.dist-info → westpa-2022.8.dist-info}/LICENSE +0 -0
- {westpa-2022.7.dist-info → westpa-2022.8.dist-info}/WHEEL +0 -0
- {westpa-2022.7.dist-info → westpa-2022.8.dist-info}/entry_points.txt +0 -0
- {westpa-2022.7.dist-info → westpa-2022.8.dist-info}/top_level.txt +0 -0
westpa/_version.py
CHANGED
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2024-04-
|
|
11
|
+
"date": "2024-04-15T22:37:00-0400",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "2022.
|
|
14
|
+
"full-revisionid": "587296bd42835960dc67dc3e91ead8f4dd2c6d97",
|
|
15
|
+
"version": "2022.08"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
|
Binary file
|
|
Binary file
|
|
@@ -16,7 +16,7 @@ import numpy as np
|
|
|
16
16
|
import westpa
|
|
17
17
|
from westpa.core.extloader import get_object
|
|
18
18
|
from westpa.core.propagators import WESTPropagator
|
|
19
|
-
from westpa.core.states import BasisState, InitialState
|
|
19
|
+
from westpa.core.states import BasisState, InitialState, return_state_type
|
|
20
20
|
from westpa.core.segment import Segment
|
|
21
21
|
from westpa.core.yamlcfg import check_bool
|
|
22
22
|
|
|
@@ -148,6 +148,7 @@ def seglog_loader(fieldname, log_file, segment, single_point):
|
|
|
148
148
|
|
|
149
149
|
segment.data['iterh5/log'] = d.getvalue() + b'\x01' # add tail protection
|
|
150
150
|
except Exception as e:
|
|
151
|
+
|
|
151
152
|
log.warning('could not read any data for {}: {}'.format(fieldname, str(e)))
|
|
152
153
|
finally:
|
|
153
154
|
d.close()
|
|
@@ -289,7 +290,7 @@ class ExecutablePropagator(WESTPropagator):
|
|
|
289
290
|
# can never disable pcoord collection
|
|
290
291
|
dsinfo['enabled'] = True
|
|
291
292
|
|
|
292
|
-
loader_directive = dsinfo.get('loader')
|
|
293
|
+
loader_directive = dsinfo.get('loader', None)
|
|
293
294
|
if callable(loader_directive):
|
|
294
295
|
loader = loader_directive
|
|
295
296
|
elif loader_directive in data_loaders.keys():
|
|
@@ -299,8 +300,12 @@ class ExecutablePropagator(WESTPropagator):
|
|
|
299
300
|
loader = get_object(loader_directive)
|
|
300
301
|
elif dsname not in ['pcoord', 'seglog', 'restart', 'trajectory']:
|
|
301
302
|
loader = aux_data_loader
|
|
303
|
+
else:
|
|
304
|
+
# YOLO. Or maybe it wasn't specified.
|
|
305
|
+
loader = loader_directive
|
|
302
306
|
|
|
303
|
-
|
|
307
|
+
if loader:
|
|
308
|
+
dsinfo['loader'] = loader
|
|
304
309
|
self.data_info.setdefault(dsname, {}).update(dsinfo)
|
|
305
310
|
|
|
306
311
|
log.debug('data_info: {!r}'.format(self.data_info))
|
|
@@ -564,13 +569,16 @@ class ExecutablePropagator(WESTPropagator):
|
|
|
564
569
|
|
|
565
570
|
return addtl_env, return_files, del_return_files
|
|
566
571
|
|
|
567
|
-
def retrieve_dataset_return(self,
|
|
572
|
+
def retrieve_dataset_return(self, state, return_files, del_return_files, single_point):
|
|
568
573
|
'''Retrieve returned data from the temporary locations directed by the environment variables.
|
|
569
|
-
``
|
|
570
|
-
is a ``dict`` where the keys are the dataset names and
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
retrieved.'''
|
|
574
|
+
``state`` is a ``Segment``, ``BasisState`` , or ``InitialState``object that the return data is
|
|
575
|
+
associated with. ``return_files`` is a ``dict`` where the keys are the dataset names and
|
|
576
|
+
the values are the paths to the temporarily files that contain the returned data.
|
|
577
|
+
``del_return_files`` is a ``dict`` where the keys are the names of datasets to be deleted
|
|
578
|
+
(if the corresponding value is set to ``True``) once the data is retrieved.'''
|
|
579
|
+
|
|
580
|
+
state_name, state_id = return_state_type(state)
|
|
581
|
+
|
|
574
582
|
for dataset in self.data_info:
|
|
575
583
|
if dataset not in return_files:
|
|
576
584
|
continue
|
|
@@ -582,10 +590,11 @@ class ExecutablePropagator(WESTPropagator):
|
|
|
582
590
|
filename = return_files[dataset]
|
|
583
591
|
loader = self.data_info[dataset]['loader']
|
|
584
592
|
try:
|
|
585
|
-
loader(dataset, filename,
|
|
593
|
+
loader(dataset, filename, state, single_point=single_point)
|
|
586
594
|
except Exception as e:
|
|
587
|
-
log.error('could not read {} for
|
|
588
|
-
|
|
595
|
+
log.error('could not read {} for {} {} from {!r}: {!r}'.format(dataset, state_name, state_id, filename, e))
|
|
596
|
+
if isinstance(state, Segment):
|
|
597
|
+
state.status = state.SEG_STATUS_FAILED
|
|
589
598
|
break
|
|
590
599
|
else:
|
|
591
600
|
if del_return_files.get(dataset, False):
|
|
@@ -596,10 +605,10 @@ class ExecutablePropagator(WESTPropagator):
|
|
|
596
605
|
shutil.rmtree(filename)
|
|
597
606
|
except Exception as e:
|
|
598
607
|
log.warning(
|
|
599
|
-
'could not delete {} file {!r} for
|
|
608
|
+
'could not delete {} file {!r} for {} {}: {!r}'.format(dataset, filename, state_name, state_id, e)
|
|
600
609
|
)
|
|
601
610
|
else:
|
|
602
|
-
log.debug('deleted {} file {!r} for
|
|
611
|
+
log.debug('deleted {} file {!r} for {} {}'.format(dataset, filename, state_name, state_id))
|
|
603
612
|
|
|
604
613
|
# Specific functions required by the WEST framework
|
|
605
614
|
def get_pcoord(self, state):
|
|
Binary file
|
westpa/core/states.py
CHANGED
|
@@ -344,3 +344,16 @@ def pare_basis_initial_states(basis_states, initial_states, segments=None):
|
|
|
344
344
|
)
|
|
345
345
|
|
|
346
346
|
return return_bstates, return_istates
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
def return_state_type(state_obj):
|
|
350
|
+
'''Convinience function for returning the state ID and type of the state_obj pointer'''
|
|
351
|
+
|
|
352
|
+
if isinstance(state_obj, Segment):
|
|
353
|
+
return type(state_obj).__name__, state_obj.seg_id
|
|
354
|
+
elif isinstance(state_obj, InitialState):
|
|
355
|
+
return type(state_obj).__name__, state_obj.state_id
|
|
356
|
+
elif isinstance(state_obj, BasisState):
|
|
357
|
+
return type(state_obj).__name__, state_obj.state_id
|
|
358
|
+
else:
|
|
359
|
+
return 'Unknown', float('inf')
|
westpa/core/trajectory.py
CHANGED
|
@@ -294,6 +294,7 @@ def load_trajectory(folder):
|
|
|
294
294
|
'''
|
|
295
295
|
traj_file = top_file = None
|
|
296
296
|
file_list = [f_name for f_name in os.listdir(folder) if not f_name.startswith('.')]
|
|
297
|
+
|
|
297
298
|
for filename in file_list:
|
|
298
299
|
filepath = os.path.join(folder, filename)
|
|
299
300
|
if not os.path.isfile(filepath):
|
|
Binary file
|
|
Binary file
|
|
@@ -61,7 +61,7 @@ class WESTDataReaderMixin(AnalysisMixin):
|
|
|
61
61
|
westpa.rc.pstatus("Using WEST data from '{}'".format(self.west_h5name))
|
|
62
62
|
|
|
63
63
|
self.data_manager = westpa.rc.get_data_manager()
|
|
64
|
-
self.data_manager.
|
|
64
|
+
self.data_manager.we_h5filename = self.west_h5name
|
|
65
65
|
self.data_manager.open_backing(mode='r')
|
|
66
66
|
|
|
67
67
|
if upcall:
|
|
Binary file
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: westpa
|
|
3
|
-
Version: 2022.
|
|
3
|
+
Version: 2022.8
|
|
4
|
+
Summary: WESTPA is a package for constructing and running stochastic simulations using the "weighted ensemble" approach of Huber and Kim (1996).
|
|
4
5
|
Home-page: http://github.com/westpa/westpa
|
|
5
6
|
License: MIT
|
|
6
7
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
westpa/_version.py,sha256=
|
|
1
|
+
westpa/_version.py,sha256=ynQYEhRU4LpCFtVDYsxdHaJVVMjwxfKjIU7OxbyGJwA,499
|
|
2
2
|
westpa/__init__.py,sha256=xyNfYIcP2ncBLu_foO1NKmJrQh8-uYdwvMuM0HsOG1M,329
|
|
3
|
-
westpa/fasthist/_fasthist.cpython-38-darwin.so,sha256=
|
|
3
|
+
westpa/fasthist/_fasthist.cpython-38-darwin.so,sha256=mbqQnfCJ927JKxGmcsy3eZIj8C2rlLvnXTwVebmT_04,268320
|
|
4
4
|
westpa/fasthist/__init__.py,sha256=oWj0gKEkKfHjGHwkzmpgAxDz55h2ze_sqQVzWSsOP6s,1071
|
|
5
5
|
westpa/fasthist/__main__.py,sha256=7XCBZvrKbBG3KEuQMpZD0jXa3vVMEVfZJTG8MmdbsrM,3902
|
|
6
6
|
westpa/westext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -41,16 +41,16 @@ westpa/core/extloader.py,sha256=yxyJN-lHo3Zjd6jS6_uhC1fIl52H-h8sbV9zYJfEWGg,2239
|
|
|
41
41
|
westpa/core/sim_manager.py,sha256=-dbsf74Q6eSA9SZKUtcPYAekl6OSYKMTpB45VhVMcE0,37906
|
|
42
42
|
westpa/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
westpa/core/h5io.py,sha256=x-n0jgekFhIi1tD7Ob7u_WUmATsulnMXsOvHkdUTHVg,37011
|
|
44
|
-
westpa/core/trajectory.py,sha256=
|
|
44
|
+
westpa/core/trajectory.py,sha256=DL7rsowKxBc1jwT7FPZFlfCWKuwagttZxd3SPgxZKU0,10913
|
|
45
45
|
westpa/core/segment.py,sha256=Gd_5htIZ6xKxxCms9XMtJncehGvMVxZeNdy4drxrnpc,4421
|
|
46
46
|
westpa/core/progress.py,sha256=tEDDn-JPY6ZNzYqyrdgA7peo7pDu8kOMvqfyiHWUgps,6753
|
|
47
47
|
westpa/core/data_manager.py,sha256=xeqt1MtjMGSRs7QN2zxRi0KrQ1cIV4L7JlOnBx-DEYE,71783
|
|
48
|
-
westpa/core/states.py,sha256=
|
|
48
|
+
westpa/core/states.py,sha256=umsdgSrYjt2vjw-1kQeiILWmureOBmBaOgg0nQxUVmA,13318
|
|
49
49
|
westpa/core/yamlcfg.py,sha256=B78OEr1n_sIkW6kDzl3FO63tiugaT-1VutAgLxU0i7A,12696
|
|
50
50
|
westpa/core/kinetics/matrates.py,sha256=1sf7L6ojLE8yT2sFfgeB8eqgjMHdMK2O_Xgyz_RjCzc,5554
|
|
51
51
|
westpa/core/kinetics/events.py,sha256=VqYBN5rVOf3hAYUA6xQ6UN7GP6tVgRFIoP69tfGhkTo,6511
|
|
52
52
|
westpa/core/kinetics/__init__.py,sha256=djtiki7X5-IEzwjwswbdgrolwUIzVAHKxCiI5B3WH28,510
|
|
53
|
-
westpa/core/kinetics/_kinetics.cpython-38-darwin.so,sha256=
|
|
53
|
+
westpa/core/kinetics/_kinetics.cpython-38-darwin.so,sha256=Wnf65oUsgmAm2fVLTMcVBZesaeFv9G0ExKDnliqTbkM,431016
|
|
54
54
|
westpa/core/kinetics/rate_averaging.py,sha256=gIKDXBAOSDI6KythepoC4QipUPksTRBc9zbM7DRtwo4,10300
|
|
55
55
|
westpa/core/binning/binless_driver.py,sha256=T5qWpLnjxCS9RdKeWf7eVCC_s6TQFDENL7X3VG6JIYo,2231
|
|
56
56
|
westpa/core/binning/mab_driver.py,sha256=azSqc9pqHk_zc1ptGNjXARDbK-UAnPVmCiYwebi5mPY,2223
|
|
@@ -59,21 +59,21 @@ westpa/core/binning/__init__.py,sha256=XmjBP6fg_id_vDELkcWW3u2GeuL5OPWblvX-kc7mI
|
|
|
59
59
|
westpa/core/binning/mab_manager.py,sha256=PUSA9J-dzmQdWQ9h5DEB9Eed6GVETf1EE43r6AvZLwI,9617
|
|
60
60
|
westpa/core/binning/assign.py,sha256=e1YWyU3R12evLAoIWUrEvv3uvdKFo4u_mfKGDcK5AVU,18028
|
|
61
61
|
westpa/core/binning/binless_manager.py,sha256=XgsLaYhknzWA9IHCqOvmnLXSgM303KnKOUjLe1NM0Zw,9414
|
|
62
|
-
westpa/core/binning/_assign.cpython-38-darwin.so,sha256=
|
|
62
|
+
westpa/core/binning/_assign.cpython-38-darwin.so,sha256=z3PnCbuvzYjR1dbOEwvQUVZpMcvvypqDDsQ20XJzbgk,292584
|
|
63
63
|
westpa/core/binning/mab.py,sha256=YgNWCistmKPFbQp9TpFgnpgGWc-HZTvSwB6ZugPS0Oo,11614
|
|
64
64
|
westpa/core/binning/bins.py,sha256=WDj7DNX3MTVkRvkgAooa9G8VThxw32uIfMTuk9sS194,1460
|
|
65
65
|
westpa/core/reweight/matrix.py,sha256=219sRxkML1V9niPIndSoRvJAC0fUmpG0PLDKpmfWW-g,5509
|
|
66
|
-
westpa/core/reweight/_reweight.cpython-38-darwin.so,sha256=
|
|
66
|
+
westpa/core/reweight/_reweight.cpython-38-darwin.so,sha256=_2JBJoiNPpuADjmRX-XkBpnJSUWsn8q7w4jd17Hpyuk,349560
|
|
67
67
|
westpa/core/reweight/__init__.py,sha256=8goYojsHMcJCZblBC2sc2fcj-NUNVEstbSLswKNlVfg,284
|
|
68
68
|
westpa/core/propagators/__init__.py,sha256=rx_kkeg3Tbb_rI0uhLGCD3OwSYj9QuhxF8QGN3mILrg,2373
|
|
69
|
-
westpa/core/propagators/executable.py,sha256=
|
|
69
|
+
westpa/core/propagators/executable.py,sha256=B9jU6RKkApr5cqH56n49IQ1i_cUcJUMfx6fmBZoWgPk,32071
|
|
70
70
|
westpa/analysis/__init__.py,sha256=CcmVPCB9OSEib0mJ4U-s9v3nrj4h-T_9AGApAbPnn8I,268
|
|
71
71
|
westpa/analysis/core.py,sha256=P_m5-sU1RURAtWQVlV_Y2pgPvwUjyCqFS-E4O3fsD4E,22399
|
|
72
72
|
westpa/analysis/statistics.py,sha256=M3Gj1bOiAu_SA4upR7gENYEOP2gnIEaSOZeGyoIxAc8,789
|
|
73
73
|
westpa/analysis/trajectories.py,sha256=jyrbbKOVyZ3GjHQushDS_G8C4IRXlUmxa-WzmEEVGwc,12878
|
|
74
74
|
westpa/mclib/__init__.py,sha256=NskP81wKw-tHTniyJ8QbgKAHah5JdpCrnPKJo1T-nLw,11513
|
|
75
75
|
westpa/mclib/__main__.py,sha256=cKqfE9koMcrHkslEPpFISA4Eblwl0mllaxn7pFeyX1A,881
|
|
76
|
-
westpa/mclib/_mclib.cpython-38-darwin.so,sha256=
|
|
76
|
+
westpa/mclib/_mclib.cpython-38-darwin.so,sha256=SbCg0slpcUTcp0ScMkC_rvrz7KFNNpP4djvuLiPqg2I,271928
|
|
77
77
|
westpa/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
78
|
westpa/cli/tools/w_direct.py,sha256=5Z9eQpvpKM-40XdiI0L3t0O3jpjMx7tk8ndYAaJxvrc,22361
|
|
79
79
|
westpa/cli/tools/w_dumpsegs.py,sha256=uv0WxvKGauyW6VT3zGyALUXVqSXwDrhwbF3ZVSJV9Mo,3952
|
|
@@ -105,7 +105,7 @@ westpa/cli/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
105
105
|
westpa/cli/core/w_truncate.py,sha256=-CHFOBr4NAZwGQ8-O5F7B0dPowpnFpm-mF9Us1gBgfo,1654
|
|
106
106
|
westpa/cli/core/w_init.py,sha256=V_CvlAuq8flg-zUO01sbMGYkLqrEDD4DU9sV90bYFus,8793
|
|
107
107
|
westpa/cli/core/w_succ.py,sha256=ZK1MHHu7t53VdBrRgJUe7b1R8DnhMKPjHOqbbOjC_As,3074
|
|
108
|
-
westpa/trajtree/_trajtree.cpython-38-darwin.so,sha256=
|
|
108
|
+
westpa/trajtree/_trajtree.cpython-38-darwin.so,sha256=NOlF4oGz1SJpjoejyNXdurmDnicufIbxZSN1vCIkvH4,154824
|
|
109
109
|
westpa/trajtree/__init__.py,sha256=K64Ok5bUP-fXo1H2rigJqxCnm-U23tJlRngNOnzR3gs,96
|
|
110
110
|
westpa/trajtree/trajtree.py,sha256=sLf4kTi0QyvFdbSR__YcPwOR2wcOxtlkC4IPUFcq-9M,4497
|
|
111
111
|
westpa/oldtools/files.py,sha256=JmLtZqxD88cybEHcOU6kodAeOJYxylpYFl4OQqU13Hs,944
|
|
@@ -118,7 +118,7 @@ westpa/oldtools/aframe/atool.py,sha256=5_ZkivLChU1wMaEvI-F7i-huMRYg2Dy8AH36eivWI
|
|
|
118
118
|
westpa/oldtools/aframe/plotting.py,sha256=nyAPzSGQPfjcA7d-nDAsi2ewr3aFenJDHeVkSElDixo,2421
|
|
119
119
|
westpa/oldtools/aframe/trajwalker.py,sha256=mXkLMg3aIBo76fogCXZs3xNwpTc9Y6qfHNIEhYRIERg,5540
|
|
120
120
|
westpa/oldtools/aframe/__init__.py,sha256=1MMuHYaL790Y1bh7NU3gweTYRIr2xgR1U9bmNrJVrSM,1047
|
|
121
|
-
westpa/oldtools/aframe/data_reader.py,sha256
|
|
121
|
+
westpa/oldtools/aframe/data_reader.py,sha256=nuIkR-vFRW_stcXwcjMSZI1RO73By-x-phfTrlD73Jc,20927
|
|
122
122
|
westpa/oldtools/aframe/transitions.py,sha256=3cQan9ju2s5hW9KvYs38kuKvSh5RjAsvHlvaY2eOZ_M,18542
|
|
123
123
|
westpa/oldtools/aframe/base_mixin.py,sha256=OAK5NfVfwdPxvFzhxxT_oEnFKR_5s0NRoqTVA6G1gXY,654
|
|
124
124
|
westpa/oldtools/aframe/iter_range.py,sha256=HFODveMwtKAbHXpbt8bII7edVy8RqwC-QPlLXLX66dU,8465
|
|
@@ -141,10 +141,10 @@ westpa/work_managers/zeromq/__init__.py,sha256=rrl4YbEaZr2AiEBTMlhvEFH83dBlAwWR_
|
|
|
141
141
|
westpa/work_managers/zeromq/core.py,sha256=K3Iyrz5u2Dy-GgZFL3ZXDN2iaaLm7qL-A3cm4PdBiF8,22907
|
|
142
142
|
westpa/work_managers/zeromq/work_manager.py,sha256=UB_WvnejDRVi1ZU2QWpP9uzhnccOH7b3qHgU-wSstTY,22425
|
|
143
143
|
westpa/work_managers/zeromq/node.py,sha256=CeoJhXVqrZxrV3lMnDtm3LNkGFxjS4dr3E6wd7ZQRTE,4877
|
|
144
|
-
westpa-2022.
|
|
145
|
-
westpa-2022.
|
|
146
|
-
westpa-2022.
|
|
147
|
-
westpa-2022.
|
|
148
|
-
westpa-2022.
|
|
149
|
-
westpa-2022.
|
|
150
|
-
westpa-2022.
|
|
144
|
+
westpa-2022.8.dist-info/RECORD,,
|
|
145
|
+
westpa-2022.8.dist-info/LICENSE,sha256=I2wUldIRJmflTYUxmSiITSZEKvlovlMPrE3JU5IslkY,1074
|
|
146
|
+
westpa-2022.8.dist-info/AUTHORS,sha256=YMi91-Fs-vFgZKUaItfh20uXthT9oe2Kq6CQXmqMGqg,671
|
|
147
|
+
westpa-2022.8.dist-info/WHEEL,sha256=WRwPRH7mjFT-dTZ5lq85StrNRg9EtOV3GBZVL26Gb_o,109
|
|
148
|
+
westpa-2022.8.dist-info/entry_points.txt,sha256=0Ym8meKTdYbUEMtUHF_4zaZP__4ldfFnoYXyYlKRB6s,1428
|
|
149
|
+
westpa-2022.8.dist-info/top_level.txt,sha256=otaLnQtwo9jKCJmja4iOOsOVDThUvPfjJaeLrgGEhlE,7
|
|
150
|
+
westpa-2022.8.dist-info/METADATA,sha256=mr5Ug2g18LvcWV8tCqcsU9e4990CspZUnMexqT9O5bE,7577
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|