Skip to content

Commit

Permalink
Merge pull request #445 from int-brain-lab/hotfix/7.2.6
Browse files Browse the repository at this point in the history
ibllib import error
  • Loading branch information
oliche committed Apr 25, 2023
2 parents d1e554d + 34946da commit 1cfe710
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion iblrig/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "7.2.5"
__version__ = "7.2.6"
import logging

import colorlog
Expand Down
2 changes: 1 addition & 1 deletion iblrig/ibllib_calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from one.api import ONE

from iblrig import path_helper
from scripts.ibllib import alyx
from scripts.ibllib_utils import alyx

ROOT_FOLDER = path_helper.get_iblrig_temp_alyx_path()
ROOT_FOLDER.mkdir(parents=True, exist_ok=True)
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
try:
log.info("Creating Alyx session...")
here = os.getcwd()
os.chdir(path_helper.get_iblrig_path() / "scripts" / "ibllib")
os.chdir(path_helper.get_iblrig_path() / "scripts" / "ibllib_utils")
os.system(f"python register_session.py {str(path_helper.get_iblrig_local_data_path())}")
os.chdir(here)
log.info("Completed registering session on Alyx.")
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/ibllib/alyx.py → scripts/ibllib_utils/alyx.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_alyx_project_info(project_name: str = None, lab: str = None, one: object

if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Alyx interface functions (must run in ibllib env)"
description="Alyx interface functions (must run in ibllib_utils env)"
)
parser.add_argument(
"--sync-params",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test_iblrig/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from one.api import ONE

import scripts.transfer_rig_data as transfer_rig_data
from scripts.ibllib.purge_rig_data import purge_local_data, session_name
from scripts.ibllib_utils.purge_rig_data import purge_local_data, session_name
from test_iblrig import OPENALYX_PARAMETERS


Expand Down

0 comments on commit 1cfe710

Please sign in to comment.