From c3a11e6b207c769134b622e3647919a67aae1f98 Mon Sep 17 00:00:00 2001 From: Mahagon <874007+Mahagon@users.noreply.github.com> Date: Fri, 20 Mar 2026 17:10:18 +0100 Subject: [PATCH 1/5] chore(deps): upgrade python_dateutil to version 2.9.0 in requirements.txt and setup.py Signed-off-by: Mahagon <874007+Mahagon@users.noreply.github.com> --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index b818f2a..89fba2e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -python_dateutil==2.5.3 +python_dateutil==2.9.0 setuptools==78.1.1 urllib3==2.5.0 diff --git a/setup.py b/setup.py index 8f8f598..202b714 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ REQUIRES = [ 'urllib3>=2.2.1,<2.6.0', - 'python-dateutil~=2.5.3', + 'python-dateutil~=2.9.0', ] TESTS_REQUIRE = [ From 871fc30932dcba0afcdcf735abd956113fe5fff5 Mon Sep 17 00:00:00 2001 From: Mahagon <874007+Mahagon@users.noreply.github.com> Date: Fri, 20 Mar 2026 17:11:38 +0100 Subject: [PATCH 2/5] chore(deps): upgrade pytest to version 9.0.2 in setup.py and test-requirements.txt Signed-off-by: Mahagon <874007+Mahagon@users.noreply.github.com> --- setup.py | 2 +- test-requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 202b714..f01e85f 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ ] TESTS_REQUIRE = [ - 'pytest~=7.1.3', + "pytest~=9.0.2", ] diff --git a/test-requirements.txt b/test-requirements.txt index e071685..5b240e0 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1 +1 @@ -pytest==7.1.3 +pytest==9.0.2 From f458b0abe84a6e29a1069ff6d050b37d621374b4 Mon Sep 17 00:00:00 2001 From: Mahagon <874007+Mahagon@users.noreply.github.com> Date: Fri, 20 Mar 2026 17:12:34 +0100 Subject: [PATCH 3/5] chore(deps): upgrade setuptools to version 82.0.1 Signed-off-by: Mahagon <874007+Mahagon@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 89fba2e..4ecbbf5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ python_dateutil==2.9.0 -setuptools==78.1.1 +setuptools==82.0.1 urllib3==2.5.0 From 847f491a2cdc91fe2cb49e38af1ef87c7a835e0f Mon Sep 17 00:00:00 2001 From: Mahagon <874007+Mahagon@users.noreply.github.com> Date: Fri, 20 Mar 2026 17:12:43 +0100 Subject: [PATCH 4/5] chore(deps): upgrade urllib3 to version 2.6.3 in requirements.txt and setup.py Signed-off-by: Mahagon <874007+Mahagon@users.noreply.github.com> --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4ecbbf5..116552a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ python_dateutil==2.9.0 setuptools==82.0.1 -urllib3==2.5.0 +urllib3==2.6.3 diff --git a/setup.py b/setup.py index f01e85f..47af4ae 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ # http://pypi.python.org/pypi/setuptools REQUIRES = [ - 'urllib3>=2.2.1,<2.6.0', + 'urllib3>=2.2.1,<2.7.0', 'python-dateutil~=2.9.0', ] From 680835feadf192ddf2badb293254471c03ed13ea Mon Sep 17 00:00:00 2001 From: Mahagon <874007+Mahagon@users.noreply.github.com> Date: Fri, 20 Mar 2026 17:19:36 +0100 Subject: [PATCH 5/5] chore(version): bump version to 1.2.0-beta.2 in setup.py Signed-off-by: Mahagon <874007+Mahagon@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 47af4ae..1fafc8b 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = 'statuscake_py' -VERSION = '1.2.0-beta.1' +VERSION = '1.2.0-beta.2' # To install the library, run the following # # python setup.py install