Files
Touchh/.venv/lib/python3.10/site-packages/numpy/version.py
2024-12-06 10:45:08 +09:00

12 lines
293 B
Python

"""
Module to expose more detailed version info for the installed `numpy`
"""
version = "2.1.3"
__version__ = version
full_version = version
git_revision = "98464cc0cbc1f211482a0756ded305bed1599f18"
release = 'dev' not in version and '+' not in version
short_version = version.split("+")[0]