diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-11-02 08:49:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-02 08:49:33 -0400 |
| commit | fa1edb2a01f7238ac6fc108142aae35faf7f9b15 (patch) | |
| tree | c20be82d6ce362d38a083bf107b6d5be574e53ac /tools | |
| parent | af7a0eedf03b9c028aead1a782d08d9680d6b4b0 (diff) | |
| parent | 4dfba2f8acec7d76fa61c13fcec662b6d957f69a (diff) | |
Merge pull request #1314 from dhalbert/3.x-frozen-before-lib3.1.1
3.x: put .frozen before /lib in sys.path; update frozen libraries
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/preprocess_frozen_modules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/preprocess_frozen_modules.py b/tools/preprocess_frozen_modules.py index d157deeee..f2b59ffc0 100755 --- a/tools/preprocess_frozen_modules.py +++ b/tools/preprocess_frozen_modules.py @@ -33,7 +33,7 @@ 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']: + if Path(root).name in ['examples', 'tests', 'docs']: continue for file in files: |
