diff --git a/ohmpi/hardware_components/mux_2024_0_X.py b/ohmpi/hardware_components/mux_2024_0_X.py index 5c02238de0293636b46bff6f00b97fdd1b6d6dda..fda497f8169e45605199cdd550059730da9e3465 100644 --- a/ohmpi/hardware_components/mux_2024_0_X.py +++ b/ohmpi/hardware_components/mux_2024_0_X.py @@ -113,6 +113,7 @@ class Mux(MuxAbstract): self._i2c_ext_tca_channel = int(kwargs['i2c_ext_tca_channel']) self._i2c_ext_tca = None if self.connect: + self.soh_logger.info(colored(f'{self.model} - {self.board_id}', 'blue')) try: self.reset_i2c_ext_tca() if self._i2c_ext_tca is None: diff --git a/ohmpi/ohmpi.py b/ohmpi/ohmpi.py index 723c045a66aa62d2cdce3c2462fdfef0e286a83a..972e5ee1b4855e85f2b0272bb0da1a261d14687d 100644 --- a/ohmpi/ohmpi.py +++ b/ohmpi/ohmpi.py @@ -53,7 +53,7 @@ except Exception as error: print(colored(f'Unexpected error: {error}', 'red')) arm64_imports = None -VERSION = 'v2024.0.18' +VERSION = 'v2024.0.20' class OhmPi(object): diff --git a/push_minor.py b/push_minor.py index 42d224756bcf50af737d2107835da44fdb59f67f..224194ee83de05dea3551c66e3cab508f295d579 100644 --- a/push_minor.py +++ b/push_minor.py @@ -9,7 +9,7 @@ branch = subprocess.check_output(['git', 'branch', '--show-current']).decode().s # merge master to avoid merge conflicts later print('===== Fetch master, then merge it ====') -os.system('git fetch origin/master') +os.system('git fetch origin master') os.system('git merge origin/master') print("=== Update version number ===")