hook-sysconfig.py 1.3 KB

1234567891011121314151617181920212223
  1. #-----------------------------------------------------------------------------
  2. # Copyright (c) 2005-2021, PyInstaller Development Team.
  3. #
  4. # Distributed under the terms of the GNU General Public License (version 2
  5. # or later) with exception for distributing the bootloader.
  6. #
  7. # The full license is in the file COPYING.txt, distributed with this software.
  8. #
  9. # SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
  10. #-----------------------------------------------------------------------------
  11. # Python 3.6 uses additional modules like `_sysconfigdata_m_linux_x86_64-linux-gnu`, see
  12. # https://github.com/python/cpython/blob/3.6/Lib/sysconfig.py#L417
  13. # Note: Some versions of Anaconda backport this feature to before 3.6. See issue #3105.
  14. # Note: on Windows, python.org and Anaconda python provide _get_sysconfigdata_name, but calling it fails due to sys
  15. # module lacking abiflags attribute. It does work on MSYS2/MINGW python, where we need to collect corresponding file.
  16. try:
  17. import sysconfig
  18. hiddenimports = [sysconfig._get_sysconfigdata_name()]
  19. except AttributeError:
  20. # Either sysconfig has no attribute _get_sysconfigdata_name (i.e., the function does not exist), or this is Windows
  21. # and the _get_sysconfigdata_name() call failed due to missing sys.abiflags attribute.
  22. pass