-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Guðmundur Björn Birkisson
authored
Nov 24, 2023
1 parent
f86c205
commit 15c9e78
Showing
1 changed file
with
8 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[tool.poetry] | ||
name = "troncos" | ||
version = "4.2.1" | ||
version = "4.2.2" | ||
description = "Collection of Python logging, tracing and profiling tools" | ||
authors = [ | ||
"Guðmundur Björn Birkisson <[email protected]>", | ||
"Karl Fredrik Haugland <[email protected]>", | ||
"Eirik Martiniussen Sylliaas <[email protected]>", | ||
"Guðmundur Björn Birkisson <[email protected]>", | ||
"Karl Fredrik Haugland <[email protected]>", | ||
"Eirik Martiniussen Sylliaas <[email protected]>", | ||
] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -19,8 +19,8 @@ python = ">=3.10,<4.0" | |
ddtrace = ">=2,<3" | ||
opentelemetry-sdk = ">=1.19,<2" | ||
opentelemetry-exporter-otlp-proto-http = ">=1.19,<2" | ||
opentelemetry-exporter-otlp-proto-grpc = {version = ">=1.19,<2", optional = true} | ||
structlog-sentry = {version = ">=2.0.0,<3", optional = true} | ||
opentelemetry-exporter-otlp-proto-grpc = { version = ">=1.19,<2", optional = true } | ||
structlog-sentry = { version = ">=2.0.0,<3", optional = true } | ||
python-ipware = ">=1,<2" | ||
pyroscope-io = ">=0.8.0,<1" | ||
|
||
|
@@ -64,18 +64,15 @@ combine_as_imports = true | |
|
||
[tool.mypy] | ||
python_version = "3.11" | ||
files = ["./troncos", "./tests",] | ||
files = ["./troncos", "./tests"] | ||
namespace_packages = true | ||
show_error_codes = true | ||
ignore_missing_imports = true | ||
follow_imports = "normal" | ||
strict = true | ||
|
||
[[tool.mypy.overrides]] | ||
module = [ | ||
"opentelemetry.sdk.*", | ||
"opentelemetry.context.*", | ||
] | ||
module = ["opentelemetry.sdk.*", "opentelemetry.context.*"] | ||
implicit_reexport = true | ||
|
||
[tool.pytest.ini_options] | ||
|