File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -67,18 +67,16 @@ def define_hermetic_runtime_toolchain_impl(
6767 # Platform-agnostic filegroup can't match on all patterns.
6868 allow_empty = True ,
6969 exclude = [
70- # static libraries
71- "lib/**/*.a" ,
72- # During pyc creation, temp files named *.pyc.NNN are created
73- "**/__pycache__/*.pyc.*" ,
74- # Do exclusions for all known ABIs
7570 # Unused shared libraries. `python` executable and the `:libpython` target
7671 # depend on `libpython{python_version}.so.1.0`.
7772 "lib/libpython{major}.{minor}*.so" .format (** version_dict ),
78- "lib/libpython{major}.{minor}*.so" .format (** version_dict ),
73+ # static libraries
74+ "lib/**/*.a" ,
7975 # tests for the standard libraries.
8076 "lib/python{major}.{minor}*/**/test/**" .format (** version_dict ),
8177 "lib/python{major}.{minor}*/**/tests/**" .format (** version_dict ),
78+ # During pyc creation, temp files named *.pyc.NNN are created
79+ "**/__pycache__/*.pyc.*" ,
8280 ] + glob_excludes .version_dependent_exclusions () + extra_files_glob_exclude ,
8381 ),
8482 )
You can’t perform that action at this time.
0 commit comments