You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ uv run tox -e typecheck
65
65
- The monorepo uses `uv` workspaces.
66
66
-`tox.ini` defines the test matrix - check it for available test environments.
67
67
- Do not add `type: ignore` comments. If a type error arises, solve it properly or write a follow-up plan to address it in another PR.
68
+
- Annotate function signatures (parameters and return types) and class attributes. Prefer `from __future__ import annotations` over runtime-quoted strings.
68
69
- When a file uses `from __future__ import annotations`, do not quote type annotations just to
69
70
avoid forward references. Keep quotes only for expressions still evaluated at runtime, such as
70
71
`typing.cast(...)`, unless the referenced type is imported at runtime.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,23 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
<!--
6
+
Do *NOT* add changelog entries here!
7
+
8
+
This changelog is managed by towncrier and is compiled at release time.
9
+
10
+
See https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/CONTRIBUTING.md#changelog for details.
11
+
-->
12
+
5
13
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
14
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
15
8
16
> [!NOTE]
9
17
> The following components are released independently and maintain individual CHANGELOG files.
10
18
> Use [this search for a list of all CHANGELOG.md files in this repo](https://github.com/search?q=repo%3Aopen-telemetry%2Fopentelemetry-python-contrib+path%3A**%2FCHANGELOG.md&type=code).
11
19
20
+
<!-- changelog start -->
21
+
12
22
## Unreleased
13
23
14
24
### Added
@@ -93,6 +103,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
0 commit comments