mirror of
https://github.com/arcctgx/ARver
synced 2025-06-04 14:33:46 +02:00
Add "get_" prefix to the name of libsndfile_version(). This aligns the names of all Python wrappers.
10 lines
329 B
Python
10 lines
329 B
Python
"""ARver version string module."""
|
|
|
|
from arver import APPNAME, VERSION
|
|
from arver.audio.properties import get_libsndfile_version
|
|
|
|
|
|
def version_string() -> str:
|
|
"""Return full ARver version string, including libsndfile version."""
|
|
number = VERSION.lstrip('v')
|
|
return f'{APPNAME}-{number} ({get_libsndfile_version()})'
|