Skip to content

Commit 107b5a2

Browse files
wantsuijuanjuxbrettlangdon
authored andcommitted
fix(wrapt): do not use wrapt 2.x yet (#14955)
<!-- Provide an overview of the change and motivation for the change --> We have a bug report that there are recursion errors with wrapt 2.x on our psycopg integration. I'd still like to study if we can recreate the error in a test but don't want this investigation to block this known issue. <!-- Describe your testing strategy or note what tests are included --> <!-- Note any risks associated with this change, or "None" if no risks --> <!-- Any other information that would be helpful for reviewers --> --------- Signed-off-by: Juanjo Alvarez <juanjo.alvarezmartinez@datadoghq.com> Co-authored-by: Juanjo Alvarez <juanjo.alvarezmartinez@datadoghq.com> Co-authored-by: Brett Langdon <brett.langdon@datadoghq.com>
1 parent 3a5006b commit 107b5a2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies = [
3737
"protobuf>=3",
3838
"typing_extensions",
3939
"xmltodict>=0.12",
40-
"wrapt>=1",
40+
"wrapt>=1,<2",
4141
]
4242

4343
[project.optional-dependencies]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
fixes:
3+
- |
4+
Pin to ``wrapt<2`` until we can ensure full compatibility with the breaking changes.

0 commit comments

Comments
 (0)