Skip to content

Commit

Permalink
Exclude node_modules/ from package autodiscovery (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-yz-liu authored Jul 28, 2024
1 parent 067d383 commit 66e8777
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ Custom checkers:
- Added tests to maintain/increase coverage of `visitor.py`, `graph.py`, and `ExprWrapper.py`
- Removed deprecated and redundant `future` argument from `node.frame()` call in `invalid_name_checker.py`
- Updated pylint to v3.2.6 and astroid to v3.2.4 (no new checks were enabled by default)
- Excluded `node_modules/` folder from package autodiscovery

## [2.7.0] - 2024-12-14

Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ zip-safe = false
version = {attr = "python_ta.__version__"}
#readme = {file = "README.md", content-type = "text/markdown"}

[tool.setuptools.packages.find]
exclude = ["node_modules"]

[tool.black]
extend-exclude = '''
^/examples/
Expand Down

0 comments on commit 66e8777

Please sign in to comment.