Skip to content

Commit 5d9b21e

Browse files
committed
Merge branch 'hotfix/2.13.2' into develop
2 parents bedb844 + 47489ed commit 5d9b21e

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

ibllib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.13.0"
1+
__version__ = "2.13.1"
22
import warnings
33

44
from ibllib.misc import logger_config

ibllib/oneibl/data_handlers.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ def __init__(self, session_path, signatures, one=None):
146146
else:
147147
self.globus.add_endpoint(f'flatiron_{self.lab}', alyx=self.one.alyx)
148148

149+
self.local_paths = []
150+
149151
def setUp(self):
150152
"""
151153
Function to download necessary data to run tasks using globus-sdk
@@ -174,7 +176,6 @@ def setUp(self):
174176

175177
target_paths = []
176178
source_paths = []
177-
self.local_paths = []
178179
for i, d in df.iterrows():
179180
sess_path = Path(rel_sess_path).joinpath(d['rel_path'])
180181
full_local_path = Path(self.globus.endpoints['local']['root_path']).joinpath(sess_path)
@@ -268,6 +269,8 @@ def __init__(self, task, session_path, signature, one=None):
268269
else:
269270
self.globus.add_endpoint(f'flatiron_{self.lab}', alyx=self.one.alyx)
270271

272+
self.local_paths = []
273+
271274
def setUp(self):
272275
"""
273276
Function to download necessary data to run tasks using AWS boto3

release_notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
## Release Notes 2.13
2+
## Release Notes 2.13.1 2022-07-01
3+
- Hotfix: globus imports were mixed one.globus and one.remote
4+
5+
## Release Notes 2.13.2 2022-07-01
6+
- Hotfix: datahandler sets local paths in init
7+
28
## Release Notes 2.13.0 2022-06-30
39
- Deprecated ibllib.version
410
- Fix Globus patcher

0 commit comments

Comments
 (0)