Add ensure function to check cutekit version
This commit is contained in:
		
							parent
							
								
									9dc1575a57
								
							
						
					
					
						commit
						39ee66364d
					
				
					 1 changed files with 13 additions and 0 deletions
				
			
		|  | @ -12,6 +12,19 @@ from . import ( | |||
| ) | ||||
| 
 | ||||
| 
 | ||||
| def ensure(version: tuple[int, int, int]): | ||||
|     if ( | ||||
|         const.VERSION[0] == version[0] | ||||
|         and const.VERSION[1] == version[1] | ||||
|         and const.VERSION[2] >= version[2] | ||||
|     ): | ||||
|         return | ||||
| 
 | ||||
|     raise RuntimeError( | ||||
|         f"Expected cutekit version {version[0]}.{version[1]}.{version[2]} but found {const.VERSION_STR}" | ||||
|     ) | ||||
| 
 | ||||
| 
 | ||||
| def setupLogger(verbose: bool): | ||||
|     if verbose: | ||||
|         logging.basicConfig( | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue