From 797c043e6c561741ee8ed9bda624bb8dc033d92c Mon Sep 17 00:00:00 2001 From: Sunny Rochiramani Date: Wed, 6 Aug 2025 15:13:05 -0700 Subject: [PATCH] Fix: Update prometheus-client version to >=0.21.1 (#2098) * Update prometheus-client version to >=0.21.1 (instead of being pinned to v0.21.1) This MR relaxes the version constraint of prometheus-client from ^0.21.1 to >=0.22. The reason for this change is that the previous constraint was too strict and caused dependency conflicts in Poetry when used alongside other packages that require a newer version. Since prometheus-client>=0.22 is backward compatible, this update is safe and avoids unnecessary version resolution issues. * Update pyproject.toml Update patch version as per PR comments. --- sdks/python/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdks/python/pyproject.toml b/sdks/python/pyproject.toml index 992b0fe0b..db85ba3ce 100644 --- a/sdks/python/pyproject.toml +++ b/sdks/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hatchet-sdk" -version = "1.16.4" +version = "1.16.5" description = "" authors = ["Alexander Belanger "] readme = "README.md" @@ -32,7 +32,7 @@ opentelemetry-instrumentation = { version = ">=0.49b0", optional = true } opentelemetry-distro = { version = ">=0.49b0", optional = true } opentelemetry-exporter-otlp = { version = "^1.28.0", optional = true } opentelemetry-exporter-otlp-proto-http = { version = "^1.28.0", optional = true } -prometheus-client = "^0.21.1" +prometheus-client = ">=0.21.1" pydantic-settings = "^2.7.1" [tool.poetry.group.lint.dependencies]