Skip to content

Commit 8434aab

Browse files
authored
chore: upgrade uv and ruff (#312)
upgrade uv and ruff Signed-off-by: gruebel <[email protected]>
1 parent e296179 commit 8434aab

File tree

8 files changed

+717
-385
lines changed

8 files changed

+717
-385
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
default_stages: [pre-commit]
22
repos:
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: v0.13.2
4+
rev: v0.14.3
55
hooks:
66
- id: ruff-check
77
args: [--fix]

hooks/openfeature-hooks-opentelemetry/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["uv_build~=0.8.0"]
2+
requires = ["uv_build~=0.9.0"]
33
build-backend = "uv_build"
44

55
[project]

providers/openfeature-provider-env-var/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["uv_build~=0.8.0"]
2+
requires = ["uv_build~=0.9.0"]
33
build-backend = "uv_build"
44

55
[project]

providers/openfeature-provider-flagd/pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ dependencies = [
2424
"panzi-json-logic>=1.0.1",
2525
"semver>=3,<4",
2626
"pyyaml>=6.0.1",
27-
"cachebox"
27+
"cachebox; python_version >= '3.10'",
28+
# version `5.0.1` wheels for Python 3.9 on macOS were the last one for now,
29+
# but it looks like the next version `>5.0.4` will have one again.
30+
# for simplicity, restircting it for all platforms for now.
31+
"cachebox<=5.0.1; python_version < '3.10'",
2832
]
2933
requires-python = ">=3.9"
3034

providers/openfeature-provider-flipt/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["uv_build~=0.8.0"]
2+
requires = ["uv_build~=0.9.0"]
33
build-backend = "uv_build"
44

55
[project]

providers/openfeature-provider-ofrep/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["uv_build~=0.8.0"]
2+
requires = ["uv_build~=0.9.0"]
33
build-backend = "uv_build"
44

55
[project]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dev = [
2020
]
2121

2222
[tool.uv]
23-
required-version = "~=0.8.0"
23+
required-version = "~=0.9.0"
2424
package = false
2525

2626
[tool.uv.sources]

uv.lock

Lines changed: 706 additions & 378 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)