Skip to content

Commit 7bff945

Browse files
authored
chore: clearly mark incompatibility with 3.15 (#15556)
## Description Explicitly mark incompatibility with 3.15, current CPython main branch. <!-- Provide an overview of the change and motivation for the change --> ## Testing <!-- Describe your testing strategy or note what tests are included --> ## Risks <!-- Note any risks associated with this change, or "None" if no risks --> ## Additional Notes <!-- Any other information that would be helpful for reviewers -->
1 parent 09066c3 commit 7bff945

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ version = "4.1.0.dev0"
1313
description = "Datadog APM client library"
1414
readme = "README.md"
1515
license = { text = "LICENSE.BSD3" }
16-
requires-python = ">=3.9"
16+
# ddtrace has many sub-components which can break when CPython internals
17+
# change over versions, .e.g. profiling. So we explicitly mark incompatibility
18+
# with versions we don't support yet.
19+
requires-python = ">=3.9,<3.15"
1720
authors = [
1821
{ name = "Datadog, Inc.", email = "[email protected]" },
1922
]

0 commit comments

Comments
 (0)