Skip to content

Commit 2e2ea47

Browse files
authored
Remove vendored wrapt references (#2021)
1 parent a79d8b2 commit 2e2ea47

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

.flake8

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[flake8]
22
exclude=
3-
elasticapm/utils/wrapt/**,
43
build/**,
54
src/**,
65
tests/**,

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pip-log.txt
1919
/docs/doctrees
2020
/example_project/*.db
2121
tests/.schemacache
22-
elasticapm/utils/wrapt/_wrappers*.so
2322
coverage
2423
.tox
2524
.eggs

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ exclude = '''
77
| _build
88
| build
99
| dist
10-
| elasticapm/utils/wrapt
1110
1211
# The following are specific to Black, you probably don't want those.
1312
| blib2to3

tests/scripts/license_headers_check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
if [[ $# -eq 0 ]]
33
then
4-
FILES=$(find . -iname "*.py" -not -path "./elasticapm/utils/wrapt/*" -not -path "./dist/*" -not -path "./build/*" -not -path "./tests/utils/stacks/linenos.py")
4+
FILES=$(find . -iname "*.py" -not -path "./dist/*" -not -path "./build/*" -not -path "./tests/utils/stacks/linenos.py")
55
else
66
FILES=$@
77
fi

0 commit comments

Comments
 (0)