Skip to content

Commit e4296a5

Browse files
committed
Disable logfire inspect_arguments by default. Add 3.13 support.
1 parent 2d5fa5b commit e4296a5

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.10", "3.11", "3.12"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717

1818
runs-on: ubuntu-latest
1919

dreadnode/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ def initialize(self) -> None:
268268
service_version=self.service_version,
269269
console=logfire.ConsoleOptions() if self.console is True else self.console,
270270
scrubbing=False,
271+
inspect_arguments=False,
271272
)
272273
self._logfire.config.ignore_no_config = True
273274

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "dreadnode"
33
version = "1.0.0-rc.2"
44
description = "Dreadnode SDK"
5-
requires-python = ">=3.10,<3.13"
5+
requires-python = ">=3.10,<3.14"
66

77
[tool.poetry]
88
name = "dreadnode"
@@ -13,7 +13,7 @@ repository = "https://github.com/dreadnode/sdk"
1313
readme = "README.md"
1414

1515
[tool.poetry.dependencies]
16-
python = ">=3.10,<3.13"
16+
python = ">=3.10,<3.14"
1717
pydantic = "^2.9.2"
1818
httpx = "^0.28.0"
1919
logfire = "^3.5.3"

0 commit comments

Comments
 (0)