Skip to content

Update frozen modules. #2181

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frozen/Adafruit_CircuitPython_Crickit
5 changes: 3 additions & 2 deletions tools/preprocess_frozen_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ def version_string(path=None, *, valid_semver=False):
def copy_and_process(in_dir, out_dir):
for root, subdirs, files in os.walk(in_dir):

# Skip library examples directories.
if Path(root).name in ['examples', 'docs', 'tests']:
# Skip library examples directory and subfolders.
relative_path_parts = Path(root).relative_to(in_dir).parts
if relative_path_parts and relative_path_parts[0] in ['examples', 'docs', 'tests']:
continue

for file in files:
Expand Down