Skip to content

Commit 492135a

Browse files
wantsuijuanjuxbrettlangdon
authored
fix(wrapt): do not use wrapt 2.x yet (#14955)
## Description <!-- 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. ## 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 --> --------- 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 d5c82a0 commit 492135a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Dependency,Version Specifier,Python Version
2-
bytecode @ git+https://github.com/MatthieuDartiailh/bytecode.git,,python_version>='3.14.0rc1'
2+
bytecode,>=0.17.0,python_version>='3.14.0'
33
bytecode,>=0.16.0,python_version>='3.13.0'
44
bytecode,>=0.15.1,python_version~='3.12.0'
55
bytecode,>=0.14.0,python_version~='3.11.0'
@@ -8,7 +8,7 @@ envier,~=0.6.1,
88
legacy-cgi,>=2.0.0,python_version>='3.13.0'
99
opentelemetry-api,>=1,
1010
protobuf,>=3,
11-
wrapt,>=1,
11+
wrapt,">=1,<2",
1212
opentracing,>=2.0.0,
1313
opentelemetry-exporter-otlp,>=1.0.0,
1414
tiktoken,,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies = [
4141
"legacy-cgi>=2.0.0; python_version>='3.13.0'",
4242
"opentelemetry-api>=1",
4343
"protobuf>=3",
44-
"wrapt>=1",
44+
"wrapt>=1,<2",
4545
]
4646

4747
[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.

requirements.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ envier,~=0.6.1,
88
legacy-cgi,>=2.0.0,python_version>='3.13.0'
99
opentelemetry-api,>=1,
1010
protobuf,>=3,
11-
wrapt,>=1,
11+
wrapt,">=1,<2",
1212
opentracing,>=2.0.0,
1313
opentelemetry-exporter-otlp,>=1.0.0,
1414
tiktoken,,

0 commit comments

Comments
 (0)