From 455e3661c6f50b088b35a3b2662052e7e2a24769 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Mon, 3 Jun 2019 04:03:57 +0200 Subject: Add kconfiglib.VERSION Holds a (, , ) tuple, e.g. (12, 0, 0). --- kconfiglib.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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 (, , ) 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 -- cgit v1.2.3