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)
|
||||
HEAD ?= HEAD
|
||||
|
||||
export PODMAN_VERSION ?= "4.5.0"
|
||||
export PODMAN_VERSION ?= "4.5.1"
|
||||
|
||||
.PHONY: podman
|
||||
podman:
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
# Do not auto-update these from version.py,
|
||||
# as test code should be changed to reflect changes in Podman API versions
|
||||
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"
|
||||
|
|
|
@ -141,7 +141,8 @@ class ContainersIntegrationTest(base.IntegrationTest):
|
|||
self.assertIn(top_ctnr.id, report["ContainersDeleted"])
|
||||
|
||||
# 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):
|
||||
self.client.containers.get(top_ctnr.id)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
"""Version of PodmanPy."""
|
||||
|
||||
__version__ = "4.5.0"
|
||||
__version__ = "4.5.1"
|
||||
__compatible_version__ = "1.40"
|
||||
|
|
|
@ -4,5 +4,5 @@ requests>=2.24
|
|||
setuptools
|
||||
sphinx
|
||||
tomli>=1.2.3; python_version<'3.11'
|
||||
urllib3>=1.26.5
|
||||
urllib3>=1.26.5,<2.0.0
|
||||
wheel
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[metadata]
|
||||
name = podman
|
||||
version = 4.5.0
|
||||
version = 4.5.1
|
||||
author = Brent Baude, Jhon Honce
|
||||
author_email = jhonce@redhat.com
|
||||
description = Bindings for Podman RESTful API
|
||||
|
@ -37,7 +37,7 @@ install_requires =
|
|||
pyxdg >=0.26
|
||||
requests >=2.24
|
||||
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;python_version<'3.8'
|
||||
|
|
Loading…
Reference in New Issue