mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-04-04 01:04:16 +03:00
setup.py: Make build reproducible by sorting generator input (#3695)
Debian's reproducible builds infrastructure reports that the ordering of objects listed in the tlobjects dict in /usr/lib/python3/dist-packages/telethon/tl/alltlobjects.py depends on the filesystem ordering of the *.tl files read at build time. Fix that by sorting the list in setup.py. Reproducible builds are desirable for security and auditing reasons, and easing QA. More details at https://reproducible-builds.org/ .
This commit is contained in:
parent
a00f74285c
commit
ccedf4ad0b
2
setup.py
2
setup.py
|
@ -54,7 +54,7 @@ METHODS_IN = GENERATOR_DIR / 'data/methods.csv'
|
|||
# Which raw API methods are covered by *friendly* methods in the client?
|
||||
FRIENDLY_IN = GENERATOR_DIR / 'data/friendly.csv'
|
||||
|
||||
TLOBJECT_IN_TLS = [Path(x) for x in GENERATOR_DIR.glob('data/*.tl')]
|
||||
TLOBJECT_IN_TLS = [Path(x) for x in sorted(GENERATOR_DIR.glob('data/*.tl'))]
|
||||
TLOBJECT_OUT = LIBRARY_DIR / '_tl'
|
||||
TLOBJECT_MOD = 'telethon._tl'
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user