From 165114cef1427d1d929cdcb0fe9e859e5012c4a5 Mon Sep 17 00:00:00 2001 From: deathaxe Date: Sat, 14 Oct 2023 21:12:57 +0200 Subject: [PATCH] Mark "enum" library built-in for python 3.8 --- package_control/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_control/library.py b/package_control/library.py index dc24ff5a..3bdf92cc 100644 --- a/package_control/library.py +++ b/package_control/library.py @@ -10,7 +10,7 @@ # 3rd-party libraries, which are part of stdlib as of certain python version BUILTIN_38_LIBRARIES = { "3.3": {}, - "3.8": {"pathlib", "typing"} + "3.8": {"enum", "pathlib", "typing"} } # Most legacy dependency are simply re-packed python packages.