Compare commits
4 Commits
Author | SHA1 | Date |
---|---|---|
|
5114564b25 | |
|
e9803cdc2a | |
|
ce9cd250d7 | |
|
7956c30161 |
2
Makefile
2
Makefile
|
@ -8,7 +8,7 @@ DESTDIR ?=
|
||||||
EPOCH_TEST_COMMIT ?= $(shell git merge-base $${DEST_BRANCH:-main} HEAD)
|
EPOCH_TEST_COMMIT ?= $(shell git merge-base $${DEST_BRANCH:-main} HEAD)
|
||||||
HEAD ?= HEAD
|
HEAD ?= HEAD
|
||||||
|
|
||||||
export PODMAN_VERSION ?= "4.5.0"
|
export PODMAN_VERSION ?= "4.5.1"
|
||||||
|
|
||||||
.PHONY: podman
|
.PHONY: podman
|
||||||
podman:
|
podman:
|
||||||
|
|
|
@ -3,5 +3,5 @@
|
||||||
# Do not auto-update these from version.py,
|
# Do not auto-update these from version.py,
|
||||||
# as test code should be changed to reflect changes in Podman API versions
|
# as test code should be changed to reflect changes in Podman API versions
|
||||||
BASE_SOCK = "unix:///run/api.sock"
|
BASE_SOCK = "unix:///run/api.sock"
|
||||||
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v4.5.0/libpod"
|
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v4.5.1/libpod"
|
||||||
COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40"
|
COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40"
|
||||||
|
|
|
@ -141,7 +141,8 @@ class ContainersIntegrationTest(base.IntegrationTest):
|
||||||
self.assertIn(top_ctnr.id, report["ContainersDeleted"])
|
self.assertIn(top_ctnr.id, report["ContainersDeleted"])
|
||||||
|
|
||||||
# SpaceReclaimed is the size of the content created during the running of the container
|
# SpaceReclaimed is the size of the content created during the running of the container
|
||||||
self.assertEqual(report["SpaceReclaimed"], 0)
|
# TODO: This should probably check if the podman version is >= 4.6 (guess)
|
||||||
|
self.assertGreater(report["SpaceReclaimed"], 0)
|
||||||
|
|
||||||
with self.assertRaises(NotFound):
|
with self.assertRaises(NotFound):
|
||||||
self.client.containers.get(top_ctnr.id)
|
self.client.containers.get(top_ctnr.id)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
"""Version of PodmanPy."""
|
"""Version of PodmanPy."""
|
||||||
|
|
||||||
__version__ = "4.5.0"
|
__version__ = "4.5.1"
|
||||||
__compatible_version__ = "1.40"
|
__compatible_version__ = "1.40"
|
||||||
|
|
|
@ -4,5 +4,5 @@ requests>=2.24
|
||||||
setuptools
|
setuptools
|
||||||
sphinx
|
sphinx
|
||||||
tomli>=1.2.3; python_version<'3.11'
|
tomli>=1.2.3; python_version<'3.11'
|
||||||
urllib3>=1.26.5
|
urllib3>=1.26.5,<2.0.0
|
||||||
wheel
|
wheel
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = podman
|
name = podman
|
||||||
version = 4.5.0
|
version = 4.5.1
|
||||||
author = Brent Baude, Jhon Honce
|
author = Brent Baude, Jhon Honce
|
||||||
author_email = jhonce@redhat.com
|
author_email = jhonce@redhat.com
|
||||||
description = Bindings for Podman RESTful API
|
description = Bindings for Podman RESTful API
|
||||||
|
@ -37,7 +37,7 @@ install_requires =
|
||||||
pyxdg >=0.26
|
pyxdg >=0.26
|
||||||
requests >=2.24
|
requests >=2.24
|
||||||
tomli>=1.2.3; python_version<'3.11'
|
tomli>=1.2.3; python_version<'3.11'
|
||||||
urllib3 >=1.26.5
|
urllib3 >= 1.26.5, < 2.0.0
|
||||||
|
|
||||||
# typing_extensions are included for RHEL 8.5
|
# typing_extensions are included for RHEL 8.5
|
||||||
# typing_extensions;python_version<'3.8'
|
# typing_extensions;python_version<'3.8'
|
||||||
|
|
Loading…
Reference in New Issue