Dane Sabo 3299181c70 Auto sync: 2025-09-02 22:47:53 (10335 files changed)
M  lazy-lock.json

M  lua/custom/configs/lspconfig.lua

M  lua/custom/init.lua

A  lua/custom/journal.lua

A  nvim_venv/bin/Activate.ps1

A  nvim_venv/bin/activate

A  nvim_venv/bin/activate.csh

A  nvim_venv/bin/activate.fish
2025-09-02 22:47:53 -04:00

13 lines
318 B
Python

"""
Module to expose more detailed version info for the installed `scipy`
"""
version = "1.15.2"
full_version = version
short_version = version.split('.dev')[0]
git_revision = "0f1fd4a7268b813fa2b844ca6038e4dfdf90084a"
release = 'dev' not in version and '+' not in version
if not release:
version = full_version