mirror of
http://forgejo.openclaw.svc.cluster.local:3000/mrhavens/intellecton.git
synced 2026-06-18 01:22:57 +00:00
11 lines
293 B
Python
11 lines
293 B
Python
|
|
"""
|
|
Module to expose more detailed version info for the installed `numpy`
|
|
"""
|
|
version = "2.4.6"
|
|
__version__ = version
|
|
full_version = version
|
|
|
|
git_revision = "b832a09cf2a169c833dd2371e7c07aa00b293242"
|
|
release = 'dev' not in version and '+' not in version
|
|
short_version = version.split("+")[0]
|