From 06d21031d496c218a2eafff6ece9690e06e02187 Mon Sep 17 00:00:00 2001 From: Ken Kroenlein Date: Tue, 23 Jun 2026 16:27:38 -0600 Subject: [PATCH] Bump runtime dependencies and version to 4.1.1 Upgrades pinned runtime dependencies in requirements.txt to the latest versions allowed by the pyproject.toml constraints: pyjwt 2.12.0 -> 2.13.0 urllib3 2.6.3 -> 2.7.0 requests 2.33.1 -> 2.34.2 boto3 1.42.42 -> 1.43.36 gemd 2.2.0 -> 2.2.4 tqdm 4.67.3 -> 4.68.3 Supersedes Dependabot PRs #1053 (pyjwt) and #1051 (urllib3), which each covered a single dependency and could not pass the "Check version bumped" gate. Validated with the unit suite and a dependency-sensitive slice of the nextgen-devkit end-to-end suite (auth, GEMD serialization, and CRUD over HTTP) against the development fleet. Co-Authored-By: Claude Opus 4.8 --- requirements.txt | 12 ++++++------ src/citrine/__version__.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 013acd6ad..1dbb39d97 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ arrow==1.4.0 -boto3==1.42.42 +boto3==1.43.36 deprecation==2.1.0 -gemd==2.2.0 -pyjwt==2.12.0 -requests==2.33.1 -tqdm==4.67.3 -urllib3==2.6.3 +gemd==2.2.4 +pyjwt==2.13.0 +requests==2.34.2 +tqdm==4.68.3 +urllib3==2.7.0 diff --git a/src/citrine/__version__.py b/src/citrine/__version__.py index 703970876..72aa75832 100644 --- a/src/citrine/__version__.py +++ b/src/citrine/__version__.py @@ -1 +1 @@ -__version__ = "4.1.0" +__version__ = "4.1.1"