Skip to content

Commit

Permalink
Remove vendored wrapt references (#2021)
Browse files Browse the repository at this point in the history
  • Loading branch information
xrmx authored Apr 3, 2024
1 parent a79d8b2 commit 2e2ea47
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[flake8]
exclude=
elasticapm/utils/wrapt/**,
build/**,
src/**,
tests/**,
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pip-log.txt
/docs/doctrees
/example_project/*.db
tests/.schemacache
elasticapm/utils/wrapt/_wrappers*.so
coverage
.tox
.eggs
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ exclude = '''
| _build
| build
| dist
| elasticapm/utils/wrapt
# The following are specific to Black, you probably don't want those.
| blib2to3
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/license_headers_check.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
if [[ $# -eq 0 ]]
then
FILES=$(find . -iname "*.py" -not -path "./elasticapm/utils/wrapt/*" -not -path "./dist/*" -not -path "./build/*" -not -path "./tests/utils/stacks/linenos.py")
FILES=$(find . -iname "*.py" -not -path "./dist/*" -not -path "./build/*" -not -path "./tests/utils/stacks/linenos.py")
else
FILES=$@
fi
Expand Down

0 comments on commit 2e2ea47

Please sign in to comment.