From 46c65cc472f5bf9820bcfe910fc493a593ee71a0 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Tue, 18 May 2021 14:11:14 -0700 Subject: [PATCH] Bump version for packaging changes * Add all dependencies to pyproject.toml Signed-off-by: Jhon Honce --- docs/source/conf.py | 2 +- podman/api/version.py | 2 +- pyproject.toml | 4 ++++ setup.cfg | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index b465ecb5..5a6a9ddc 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = u'Red Hat Inc' # The full version, including alpha/beta/rc tags -version = '3.1.2.3' +version = '3.1.2.4' release = version add_module_names = False diff --git a/podman/api/version.py b/podman/api/version.py index e4970354..e0d643a2 100644 --- a/podman/api/version.py +++ b/podman/api/version.py @@ -1,4 +1,4 @@ """Version of PodmanPy.""" -__version__ = "3.1.2.3" +__version__ = "3.1.2.4" __compatible_version__ = "1.40" diff --git a/pyproject.toml b/pyproject.toml index 65d5e95d..0c7306c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,10 @@ profile = "black" line_length = 100 [build-system] requires = [ + "requests>=2.24", + "toml>=0.10.2", + "urllib3>=1.24.2", + "pyxdg>=0.26", "setuptools>=42", "wheel", ] diff --git a/setup.cfg b/setup.cfg index ac340b47..bca77166 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,4 +41,4 @@ install_requires = universal = false [sdist] -formats = zip +formats = gztar