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.
This commit is contained in:
Sunny Rochiramani
2025-08-06 15:13:05 -07:00
committed by GitHub
parent 34074affd8
commit 797c043e6c

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "hatchet-sdk"
version = "1.16.4"
version = "1.16.5"
description = ""
authors = ["Alexander Belanger <alexander@hatchet.run>"]
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]