From 9bbcaabdf8e78655cde31028d5449f73d8eef5be Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Thu, 14 Mar 2024 00:07:48 +0000 Subject: [PATCH] Override for jwt/PyJWT --- internal/backends/python/pypi_map.override.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/backends/python/pypi_map.override.go b/internal/backends/python/pypi_map.override.go index 3e62d40b..50f52505 100644 --- a/internal/backends/python/pypi_map.override.go +++ b/internal/backends/python/pypi_map.override.go @@ -14,6 +14,7 @@ var moduleToPypiPackageOverride = map[string][]string{ "graphics": {"graphics.py"}, // this package is popular, but the module doesn't match the package name https://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/graphics.html#a-graphics-introduction "replit.ai": {"replit-ai"}, // Replit's AI package "glm": {"PyGLM", "glm"}, // Both of these packages are valid, but PyGLM is a library, glm is an executable. + "jwt": {"PyJWT", "jwt"}, // Both of these packages are valid, but PyJWT is more popular "ldclient": {"ldclient-py", "ldclient"}, // LaunchDarkly client "tensorflow": append([]string{"tensorflow"}, tf_variants[:]...), // Avoid suggesting conflicting tensorflow builds "tensorflow-federated": {"tensorflow-federated", "tensorflow-federated-nightly"}, // Avoid suggesting conflicting tensorflow-federated packages