17 lines
448 B
Python
17 lines
448 B
Python
![]() |
#!/usr/bin/env python3
|
||
|
"""Extract version number from __init__.py"""
|
||
|
|
||
|
# Authors: The scikit-learn developers
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
import os
|
||
|
|
||
|
sklearn_init = os.path.join(os.path.dirname(__file__), "../__init__.py")
|
||
|
|
||
|
data = open(sklearn_init).readlines()
|
||
|
version_line = next(line for line in data if line.startswith("__version__"))
|
||
|
|
||
|
version = version_line.strip().split(" = ")[1].replace('"', "").replace("'", "")
|
||
|
|
||
|
print(version)
|