Coverage for typed_stream / version.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-17 08:56 +0000

1#!/usr/bin/python3 

2""" 

3This script contains the version of this package. 

4 

5Update this to create a new release. 

6To get the current version run this script. 

7""" 

8 

9from __future__ import annotations 

10 

11__all__ = ("VERSION", "version_info") 

12 

13version_info: tuple[int, int, int] = (0, 155, 1) 

14VERSION = ".".join(map(str, version_info)) 

15 

16if __name__ == "__main__": # pragma: no cover 

17 print(VERSION)