Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
default_stages: [pre-commit]
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.2
rev: v0.14.3
hooks:
- id: ruff-check
args: [--fix]
Expand Down
2 changes: 1 addition & 1 deletion hooks/openfeature-hooks-opentelemetry/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["uv_build~=0.8.0"]
requires = ["uv_build~=0.9.0"]
build-backend = "uv_build"

[project]
Expand Down
2 changes: 1 addition & 1 deletion providers/openfeature-provider-env-var/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["uv_build~=0.8.0"]
requires = ["uv_build~=0.9.0"]
build-backend = "uv_build"

[project]
Expand Down
6 changes: 5 additions & 1 deletion providers/openfeature-provider-flagd/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ dependencies = [
"panzi-json-logic>=1.0.1",
"semver>=3,<4",
"pyyaml>=6.0.1",
"cachebox"
"cachebox; python_version >= '3.10'",
# version `5.0.1` wheels for Python 3.9 on macOS were the last one for now,
# but it looks like the next version `>5.0.4` will have one again.
# for simplicity, restircting it for all platforms for now.
"cachebox<=5.0.1; python_version < '3.10'",
]
requires-python = ">=3.9"

Expand Down
2 changes: 1 addition & 1 deletion providers/openfeature-provider-flipt/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["uv_build~=0.8.0"]
requires = ["uv_build~=0.9.0"]
build-backend = "uv_build"

[project]
Expand Down
2 changes: 1 addition & 1 deletion providers/openfeature-provider-ofrep/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["uv_build~=0.8.0"]
requires = ["uv_build~=0.9.0"]
build-backend = "uv_build"

[project]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dev = [
]

[tool.uv]
required-version = "~=0.8.0"
required-version = "~=0.9.0"
package = false

[tool.uv.sources]
Expand Down
1,084 changes: 706 additions & 378 deletions uv.lock

Large diffs are not rendered by default.