Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading