From 61b0e2bdbc6fd2691062d03638b64ce6a5066602 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 20:59:28 +0000 Subject: [PATCH 1/3] build(deps): update apimatic-core-interfaces requirement Updates the requirements on [apimatic-core-interfaces](https://github.com/apimatic/core-interfaces-python) to permit the latest version. - [Release notes](https://github.com/apimatic/core-interfaces-python/releases) - [Commits](https://github.com/apimatic/core-interfaces-python/compare/0.1.1...0.1.6) --- updated-dependencies: - dependency-name: apimatic-core-interfaces dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a4f7487..36899f6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ jsonpickle~=3.3.0 python-dateutil~=2.8 -apimatic-core-interfaces~=0.1.0 +apimatic-core-interfaces~=0.1.6 requests~=2.31 setuptools>=68.0.0 jsonpointer~=2.3 From 236e808b7259af705f6588f0266c42b0a44e5f0a Mon Sep 17 00:00:00 2001 From: Muhammad Sufyan Date: Wed, 26 Nov 2025 16:26:51 +0500 Subject: [PATCH 2/3] updates minimum version of core interfaces --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 36899f6..79b8d3f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ jsonpickle~=3.3.0 python-dateutil~=2.8 -apimatic-core-interfaces~=0.1.6 +apimatic-core-interfaces~=0.1.0, >= 0.1.8 requests~=2.31 setuptools>=68.0.0 jsonpointer~=2.3 From c92f77725accd890139b89a0a19bfdb74d341f29 Mon Sep 17 00:00:00 2001 From: Muhammad Sufyan Date: Wed, 26 Nov 2025 16:30:23 +0500 Subject: [PATCH 3/3] Update setup.py updates dependency in setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b020caa..8053de6 100644 --- a/setup.py +++ b/setup.py @@ -23,9 +23,9 @@ url='https://github.com/apimatic/core-lib-python', packages=find_packages(), install_requires=[ - 'apimatic-core-interfaces~=0.1.0, >= 0.1.6', + 'apimatic-core-interfaces~=0.1.0, >= 0.1.8', 'jsonpickle~=3.3.0', - 'python-dateutil~=2.8', + 'python-dateutil>= 2.9, < 3.0', 'requests~=2.31', 'setuptools>=68.0.0', 'jsonpointer~=3.0', @@ -33,6 +33,7 @@ ], tests_require=[ 'pytest~=7.2.2', + 'coverage>=7.2.2, <7.7.0', 'pytest-cov~=4.0.0' ] )