Open arkrow opened 4 months ago
This pull request introduces support for PyInstaller and dynamic versioning in the pymusiclooper project. The changes involve moving the versioning logic from the __init__.py
file to a new __version__.py
file, which will be dynamically updated by the poetry-dynamic-versioning tool.
Files | Changes |
---|---|
pymusiclooper/__init__.py pymusiclooper/__version__.py |
Refactored versioning logic to support dynamic versioning with poetry-dynamic-versioning by moving it from __init__.py to a new __version__.py file. |
Summary by Sourcery
Replaced static versioning with dynamic versioning using poetry-dynamic-versioning by moving version definition from pymusiclooper/init.py to pymusiclooper/version.py.