diff --git a/pyproject.toml b/pyproject.toml index 0c8ecc09..2de79e2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,9 @@ build-backend = "setuptools.build_meta" [project] name = "podman" -dynamic = ["version"] +# TODO: remove the line version = ... on podman-py > 5.4.0 releases +# dynamic = ["version"] +version = "5.4.0.1" description = "Bindings for Podman RESTful API" readme = "README.md" license = {file = "LICENSE"} @@ -70,8 +72,9 @@ log_cli_date_format = "%Y-%m-%d %H:%M:%S" where = ["."] include = ["podman*"] -[tool.setuptools.dynamic] -version = {attr = "podman.version.__version__"} +# TODO: remove the line version = ... on podman-py > 5.4.0 releases +# [tool.setuptools.dynamic] +# version = {attr = "podman.version.__version__"} [tool.ruff] line-length = 100 diff --git a/setup.cfg b/setup.cfg index 5782d074..6577a760 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = podman -version = 5.4.0 +version = 5.4.0.1 author = Brent Baude, Jhon Honce, Urvashi Mohnani, Nicola Sella author_email = jhonce@redhat.com description = Bindings for Podman RESTful API