Skip to content

Commit 04b88bf

Browse files
committed
Merge branch 'release/2.10.5'
2 parents 3a57f52 + b7d94f4 commit 04b88bf

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
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.10.4"
1+
__version__ = "2.10.5"
22
import warnings
33

44
from ibllib.misc import logger_config

ibllib/oneibl/data_handlers.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,10 @@ def setUp(self):
147147
:return:
148148
"""
149149
if self.lab == 'cortexlab':
150-
df = super().getData(one=ONE(base_url='https://alyx.internationalbrainlab.org'))
150+
one = ONE(base_url='https://alyx.internationalbrainlab.org')
151+
df = super().getData(one=one)
151152
else:
153+
one = self.one
152154
df = super().getData()
153155

154156
if len(df) == 0:
@@ -173,9 +175,9 @@ def setUp(self):
173175
full_local_path = Path(self.globus.endpoints['local']['root_path']).joinpath(sess_path)
174176
if not full_local_path.exists():
175177

176-
if self.one._index_type() is int:
178+
if one._index_type() is int:
177179
uuid = np2str(np.r_[i[0], i[1]])
178-
elif self.one._index_type() is str:
180+
elif one._index_type() is str:
179181
uuid = i
180182

181183
self.local_paths.append(full_local_path)

release_notes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Release Note 2.10
22

3+
## Release Note 2.10.5 2022-03-11
4+
- Fix moot release accident
5+
36
## Release Note 2.10.4 2022-03-11
47
- Data handler connects to correct alyx database on cortexlab
58

0 commit comments

Comments
 (0)