diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-27 04:08:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-27 04:08:08 -0800 |
commit | c1489e63175925c90bc641aefd50dd6209efa068 (patch) | |
tree | 564daee61d9c65cb33f76e587b2d8d0c355213f1 | |
parent | e679e768f14413b04a2f4d0e2b7def5a0c5f6a8f (diff) | |
parent | f84452f411d2f5b04eb0fa4f4a9a56c1d24865b4 (diff) | |
download | podman-c1489e63175925c90bc641aefd50dd6209efa068.tar.gz podman-c1489e63175925c90bc641aefd50dd6209efa068.tar.bz2 podman-c1489e63175925c90bc641aefd50dd6209efa068.zip |
Merge pull request #1863 from afbjorklund/podman_version
Actually set version for podman module / pypodman
-rw-r--r-- | contrib/python/podman/Makefile | 2 | ||||
-rw-r--r-- | contrib/python/pypodman/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/contrib/python/podman/Makefile b/contrib/python/podman/Makefile index 6ec4159f2..11a7568d1 100644 --- a/contrib/python/podman/Makefile +++ b/contrib/python/podman/Makefile @@ -4,6 +4,7 @@ PODMAN_VERSION ?= '0.0.4' .PHONY: python-podman python-podman: + PODMAN_VERSION=$(PODMAN_VERSION) \ $(PYTHON) setup.py sdist bdist .PHONY: lint @@ -16,6 +17,7 @@ integration: .PHONY: install install: + PODMAN_VERSION=$(PODMAN_VERSION) \ $(PYTHON) setup.py install --root ${DESTDIR} .PHONY: upload diff --git a/contrib/python/pypodman/Makefile b/contrib/python/pypodman/Makefile index cd0fcf1de..272145c5d 100644 --- a/contrib/python/pypodman/Makefile +++ b/contrib/python/pypodman/Makefile @@ -4,6 +4,7 @@ PODMAN_VERSION ?= '0.0.4' .PHONY: python-pypodman python-pypodman: + PODMAN_VERSION=$(PODMAN_VERSION) \ $(PYTHON) setup.py sdist bdist .PHONY: lint @@ -16,6 +17,7 @@ integration: .PHONY: install install: + PODMAN_VERSION=$(PODMAN_VERSION) \ $(PYTHON) setup.py install --root ${DESTDIR} .PHONY: upload |