mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Revert "Add git commit suffix to __version__ for development installs (#5967)"
This commit is contained in:
parent
efe1a67e84
commit
61cbc39c4a
6 changed files with 12 additions and 26 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -94,6 +94,3 @@ ENV/
|
||||||
|
|
||||||
# pyright
|
# pyright
|
||||||
pyrightconfig.json
|
pyrightconfig.json
|
||||||
|
|
||||||
# Versioning
|
|
||||||
beets/_version.py
|
|
||||||
|
|
|
||||||
|
|
@ -17,10 +17,9 @@ from sys import stderr
|
||||||
|
|
||||||
import confuse
|
import confuse
|
||||||
|
|
||||||
# Version management using poetry-dynamic-versioning
|
|
||||||
from ._version import __version__, __version_tuple__
|
|
||||||
from .util import deprecate_imports
|
from .util import deprecate_imports
|
||||||
|
|
||||||
|
__version__ = "2.5.0"
|
||||||
__author__ = "Adrian Sampson <adrian@radbox.org>"
|
__author__ = "Adrian Sampson <adrian@radbox.org>"
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -55,6 +54,3 @@ class IncludeLazyConfig(confuse.LazyConfig):
|
||||||
|
|
||||||
|
|
||||||
config = IncludeLazyConfig("beets", __name__)
|
config = IncludeLazyConfig("beets", __name__)
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["__version__", "__version_tuple__", "config"]
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
# This file is auto-generated during the build process.
|
|
||||||
# Do not edit this file directly.
|
|
||||||
# Placeholders are replaced during substitution.
|
|
||||||
# Run `git update-index --assume-unchanged beets/_version.py`
|
|
||||||
# to ignore local changes to this file.
|
|
||||||
__version__ = "0.0.0"
|
|
||||||
__version_tuple__ = (0, 0, 0)
|
|
||||||
|
|
@ -22,6 +22,9 @@ For packagers:
|
||||||
|
|
||||||
- Fixed issue with legacy metadata plugins not copying properties from the base
|
- Fixed issue with legacy metadata plugins not copying properties from the base
|
||||||
class.
|
class.
|
||||||
|
- Reverted the following: When installing ``beets`` via git or locally the
|
||||||
|
version string now reflects the current git branch and commit hash.
|
||||||
|
:bug:`6089`
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -186,6 +186,12 @@ FILENAME_AND_UPDATE_TEXT: list[tuple[Path, UpdateVersionCallable]] = [
|
||||||
PYPROJECT,
|
PYPROJECT,
|
||||||
lambda text, new: re.sub(r"(?<=\nversion = )[^\n]+", f'"{new}"', text),
|
lambda text, new: re.sub(r"(?<=\nversion = )[^\n]+", f'"{new}"', text),
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
BASE / "beets" / "__init__.py",
|
||||||
|
lambda text, new: re.sub(
|
||||||
|
r"(?<=__version__ = )[^\n]+", f'"{new}"', text
|
||||||
|
),
|
||||||
|
),
|
||||||
(CHANGELOG, update_changelog),
|
(CHANGELOG, update_changelog),
|
||||||
(BASE / "docs" / "conf.py", update_docs_config),
|
(BASE / "docs" / "conf.py", update_docs_config),
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -158,18 +158,9 @@ web = ["flask", "flask-cors"]
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
beet = "beets.ui:main"
|
beet = "beets.ui:main"
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry-dynamic-versioning]
|
|
||||||
enable = true
|
|
||||||
vcs = "git"
|
|
||||||
format = "{base}.dev{distance}+{commit}"
|
|
||||||
|
|
||||||
[tool.poetry-dynamic-versioning.files."beets/_version.py"]
|
|
||||||
persistent-substitution = true
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
|
requires = ["poetry-core>=1.0.0"]
|
||||||
build-backend = "poetry_dynamic_versioning.backend"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.pipx-install]
|
[tool.pipx-install]
|
||||||
poethepoet = ">=0.26"
|
poethepoet = ">=0.26"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue