Files
geMoldInsight/venv/lib/python3.11/site-packages/numpy/version.py
T

12 lines
293 B
Python
Raw Normal View History

2026-02-12 23:22:11 +08:00
"""
Module to expose more detailed version info for the installed `numpy`
"""
version = "2.3.4"
__version__ = version
full_version = version
git_revision = "1458b9e79d1a5755eae9adcb346758f449b6b430"
release = 'dev' not in version and '+' not in version
short_version = version.split("+")[0]