Skip to content

Commit 0b0f0d3

Browse files
authored
ci: pin wrapt<2 in typing checker (#14971)
## Description ddapm-test-agent installs vcrpy which installs "wrapt" with no constraints. This meant we were still install wrapt 2.0 in our hatch lint environment causing us to type against wrapt 2 even though we updated pyproject.toml to be "wrapt>=1,<2". ## 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 e1b6efa commit 0b0f0d3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hatch.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ dependencies = [
1515
"types-PyYAML==6.0.12.2",
1616
"types-setuptools==65.6.0.0",
1717
"ddapm-test-agent>=1.2.0",
18+
# TODO: Remove this when we are compatible with wrapt>=2
19+
# ddapm-test-agent -> vcrpy -> wrapt
20+
"wrapt<2",
1821
"packaging==23.1",
1922
"pygments==2.16.1",
2023
"riot==0.20.1",

0 commit comments

Comments
 (0)