Skip to content

Commit 5fbbf9e

Browse files
committed
comment: remove sorting
1 parent c319b2b commit 5fbbf9e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

python/private/hermetic_runtime_repo_setup.bzl

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)