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 plans/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Legend: **P1** critical · **P2** high · **P3** medium. Effort **S**<½day · *
| 001 | [Fix husky pre-commit hook](001-fix-husky-precommit-hook.md) | F4 | dx | P2 | S | LOW | done |
| 002 | [Fix README limitations + document rate-limit env](002-fix-readme-limitations-and-document-rate-limit-env.md) | F2 | docs | P2 | S | LOW | done |
| 003 | [Pin vite-plus + toolchain versions](003-pin-vite-plus-toolchain-versions.md) | F14 | migration (deps) | P2 | S | LOW | done |
| 004 | [Raise SDK runtime floors](004-raise-sdk-runtime-floors.md) | F15 | migration (deps) | P3 | S | LOW | todo |
| 004 | [Raise SDK runtime floors](004-raise-sdk-runtime-floors.md) | F15 | migration (deps) | P3 | S | LOW | done |
| 005 | [Fix knip config + remove dead searchLogs](005-fix-knip-config-and-remove-dead-searchlogs.md) | F10+F5 | tech-debt | P2 | S | LOW-MED | todo |
| 006 | [Fix SSE backpressure dropping live events](006-fix-sse-backpressure-dropping-live-events.md) | F1 | bug | P1 | S | LOW | todo |
| 007 | [Fix OTLP zero-timestamp handling](007-fix-otlp-zero-timestamp.md) | F17 | bug | P2 | S | LOW | todo |
Expand Down
7 changes: 3 additions & 4 deletions sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = ["httpx>=0.25.0", "typing_extensions>=4.0.0"]

[project.optional-dependencies]
Expand All @@ -47,13 +46,13 @@ Issues = "https://github.com/Divkix/Logwell/issues"
packages = ["src/logwell"]

[tool.mypy]
python_version = "3.9"
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true

[tool.ruff]
target-version = "py39"
target-version = "py310"
line-length = 100

[tool.ruff.lint]
Expand Down
5 changes: 4 additions & 1 deletion sdks/python/src/logwell/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@

from __future__ import annotations

from typing import Any, Callable, Literal
from typing import TYPE_CHECKING, Any, Literal

if TYPE_CHECKING:
from collections.abc import Callable

from typing_extensions import NotRequired, Required, TypedDict

Expand Down
Loading
Loading