Skip to content

Commit 9841801

Browse files
committed
fix exclud-files
1 parent e5d0f57 commit 9841801

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ check:
3030
python3 scripts/validate_unwanted_patterns.py \
3131
--validation-type="private_import_across_module" \
3232
--included-file-extensions="py" pandas/ \
33-
--excluded-file-paths=pandas/tests/,asv_bench/
33+
--excluded-file-paths=pandas/tests,asv_bench/,pandas/_vendored
3434

3535
python3 scripts/validate_unwanted_patterns.py \
3636
--validation-type="private_function_across_module" \
3737
--included-file-extensions="py" pandas/ \
38-
--excluded-file-paths=pandas/tests/,asv_bench/
38+
--excluded-file-paths=pandas/tests,asv_bench/,pandas/_vendored

scripts/validate_unwanted_patterns.py

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
"_flex_comp_doc_FRAME",
3636
"_make_flex_doc",
3737
"_op_descriptions",
38+
"_test_parse_iso8601",
39+
"_json_normalize", # TODO: remove after deprecation is enforced
3840
"_testing",
3941
"_test_decorators",
4042
"__version__", # check np.__version__ in compat.numpy.function

0 commit comments

Comments
 (0)