CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
version.py13 linesDownload Raw Back to scipy
1
2"""
3Module to expose more detailed version info for the installed `scipy`
4"""
5version = "1.15.3"
6full_version = version
7short_version = version.split('.dev')[0]
8git_revision = "e29dcb65a2040f04819b426a04b60d44a8f69c04"
9release = 'dev' not in version and '+' not in version
10
11if not release:
12    version = full_version
13 
Aluode/PerceptionLabPortable · CoolFace