From fa5aba9069b0776a88ffe7b60fd751b318b3b403 Mon Sep 17 00:00:00 2001 From: Ryan Clary <9618975+mrclary@users.noreply.github.com> Date: Tue, 30 Aug 2022 13:18:49 -0700 Subject: [PATCH] Fix issue where py2app does not include all formatters for pygments=2.13. --- installers/macOS/packages.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/installers/macOS/packages.py b/installers/macOS/packages.py index 230e0c3fe53..85ad626f78b 100644 --- a/installers/macOS/packages.py +++ b/installers/macOS/packages.py @@ -20,6 +20,8 @@ ImportError: The 'more_itertools' package is required; normally this is bundled with this package so if you get this warning, consult the packager of your distribution. +pygments: + ModuleNotFoundError: No module named 'pygments.formatters.latex' pyls_spyder : Mandatory: pyls_spyder >=0.1.1 : None (NOK) pylsp_black : @@ -39,6 +41,7 @@ PACKAGES = [ 'humanfriendly', 'pkg_resources', + 'pygments', 'pyls_spyder', 'pylsp_black', 'setuptools',