diff options
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index e4d344a..01ba0b8 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -12,6 +12,11 @@ configuration systems. See the homepage at https://github.com/ulfalizer/Kconfiglib for a longer overview. +Since Kconfiglib 12.0.0, the library version is available in +kconfiglib.VERSION, which is a (<major>, <minor>, <patch>) tuple, e.g. +(12, 0, 0). + + Using Kconfiglib on the Linux kernel with the Makefile targets ============================================================== @@ -540,6 +545,9 @@ from glob import iglob from os.path import dirname, exists, expandvars, islink, join, realpath +VERSION = (12, 0, 0) + + # File layout: # # Public classes |
