Skip to content

Commit

Permalink
Move version number to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Sep 5, 2024
1 parent d60b4ad commit 1a18014
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Changed
-------

- Update dependencies.
- Describe application version in ``pyproject.toml``.

.. _changelog-0.7.13:

Expand Down
4 changes: 3 additions & 1 deletion a3m/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = "0.7.14"
from importlib.metadata import version

__version__ = version("a3m")

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespaces = false

[project]
name = "a3m"
dynamic = ["version"]
version = "0.7.14"
description = "Lightweight Archivematica"
requires-python = ">=3.11"
readme = "README.rst"
Expand Down

0 comments on commit 1a18014

Please sign in to comment.