Changeset 24238
- Timestamp:
- 10/16/19 20:48:39 (5 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test243.py
r24214 r24238 25 25 #load hourly surface forcing date from 1979 to 2009: 26 26 if sys.version_info.major == 2: 27 inputs = np.load('../Data/gemb_input.npy' ).item()27 inputs = np.load('../Data/gemb_input.npy', allow_pickle=True).item() 28 28 else: 29 inputs = np.load('../Data/gemb_input.npy', encoding='bytes').item()29 inputs = np.load('../Data/gemb_input.npy', allow_pickle=True, encoding='bytes').item() 30 30 31 31 #setup the inputs: -
issm/trunk-jpl/test/NightlyRun/test252.py
r24214 r24238 25 25 #load hourly surface forcing date from 1979 to 2009: 26 26 if sys.version_info.major == 2: 27 inputs = np.load('../Data/gemb_input.npy' ).item()27 inputs = np.load('../Data/gemb_input.npy', allow_pickle=True).item() 28 28 else: 29 inputs = np.load('../Data/gemb_input.npy', encoding='bytes').item()29 inputs = np.load('../Data/gemb_input.npy', allow_pickle=True, encoding='bytes').item() 30 30 31 31 #setup the inputs:
Note:
See TracChangeset
for help on using the changeset viewer.