diff options
author | Seth Michael Larson <seth@python.org> | 2024-02-14 16:29:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 16:29:06 (GMT) |
commit | 4b2d1786ccf913bc80ff571c32b196be1543ca54 (patch) | |
tree | 9d1dba38a63d0866eadf6b2bea645286282a0169 /Tools/build | |
parent | 671360161f0b7a5ff4c1d062e570962e851b4bde (diff) | |
download | cpython-4b2d1786ccf913bc80ff571c32b196be1543ca54.zip cpython-4b2d1786ccf913bc80ff571c32b196be1543ca54.tar.gz cpython-4b2d1786ccf913bc80ff571c32b196be1543ca54.tar.bz2 |
gh-115399: Upgrade bundled libexpat to 2.6.0 (#115431)
Diffstat (limited to 'Tools/build')
-rw-r--r-- | Tools/build/generate_sbom.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/build/generate_sbom.py b/Tools/build/generate_sbom.py index 442487f..82016dc 100644 --- a/Tools/build/generate_sbom.py +++ b/Tools/build/generate_sbom.py @@ -59,7 +59,10 @@ PACKAGE_TO_FILES = { include=["Modules/_decimal/libmpdec/**"] ), "expat": PackageFiles( - include=["Modules/expat/**"] + include=["Modules/expat/**"], + exclude=[ + "Modules/expat/expat_config.h", + ] ), "macholib": PackageFiles( include=["Lib/ctypes/macholib/**"], |