From f551077c0678c6772804c79ec5b6d0daecc20869 Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Tue, 19 Dec 2023 14:16:23 -0800 Subject: [PATCH] Some more package renames Resolves https://github.com/replit/upm/issues/69 --- internal/backends/python/pypi_map.override.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/internal/backends/python/pypi_map.override.go b/internal/backends/python/pypi_map.override.go index b3466317..e9544fc4 100644 --- a/internal/backends/python/pypi_map.override.go +++ b/internal/backends/python/pypi_map.override.go @@ -11,4 +11,12 @@ var moduleToPypiPackageOverride = map[string]string{ "faiss": "faiss-cpu", // faiss is offered as precompiled wheels, faiss-cpu and faiss-gpu. "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 + /* Proxy packages + * + * These are packages that provide helpful aliases, but otherwise provide no functionality. + * We should prefer the real version. + */ + "discord": "discord.py", + "bs4": "beautifulsoup4", + "glm": "PyGLM", }