diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-11-28 15:04:06 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2018-12-05 15:43:08 -0700 |
commit | c60489da47228234fd526cd67d065f9a28aafcb8 (patch) | |
tree | 4c23aba816c59c73deca3ebaa04d976747f7c1d5 /contrib/python/podman | |
parent | bbcbf03f7307d75e69de17db06edc7d54c190ffc (diff) | |
download | podman-c60489da47228234fd526cd67d065f9a28aafcb8.tar.gz podman-c60489da47228234fd526cd67d065f9a28aafcb8.tar.bz2 podman-c60489da47228234fd526cd67d065f9a28aafcb8.zip |
Refactor BooleanAction to mimic golang interface
* Change all store_true or store_false to use store_bool.
New behavior documented in BooleanAction docstring.
* Remove any extraneous code identified by pylint in files from above.
Fixes #1869
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/python/podman')
-rw-r--r-- | contrib/python/podman/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/podman/Makefile b/contrib/python/podman/Makefile index 11a7568d1..0cbfe2fb3 100644 --- a/contrib/python/podman/Makefile +++ b/contrib/python/podman/Makefile @@ -1,6 +1,6 @@ PYTHON ?= $(shell command -v python3 2>/dev/null || command -v python) DESTDIR ?= / -PODMAN_VERSION ?= '0.0.4' +PODMAN_VERSION ?= '0.11.1.1' .PHONY: python-podman python-podman: @@ -22,8 +22,8 @@ install: .PHONY: upload upload: - $(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel - twine upload --repository-url https://test.pypi.org/legacy/ dist/* + PODMAN_VERSION=$(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel + twine upload --verbose --repository-url https://test.pypi.org/legacy/ dist/* .PHONY: clobber clobber: uninstall clean |