mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
feat: implement dynamic versioning using setuptools_scm
This commit is contained in:
parent
209adecb19
commit
e5631e9de3
2 changed files with 10 additions and 3 deletions
|
@ -1 +1,6 @@
|
|||
__version__ = "0.54.9-dev+0000000"
|
||||
from setuptools_scm import get_version
|
||||
|
||||
try:
|
||||
__version__ = get_version(root='..', relative_to=__file__)
|
||||
except Exception:
|
||||
__version__ = "0.0.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue