From d6ce2b6edd36221a8f1ceecc234606fe66ddeaf8 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Wed, 8 Mar 2023 08:54:38 +0100 Subject: [PATCH] DOC Remove package loading from roadmap (#3636) [skip CI] --- docs/project/roadmap.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/docs/project/roadmap.md b/docs/project/roadmap.md index 55c4fd754..0731ce8db 100644 --- a/docs/project/roadmap.md +++ b/docs/project/roadmap.md @@ -33,23 +33,6 @@ performance BLAS library such as BLIS. See issue {issue}`1120`. -## Improvements to package loading system - -Currently, Pyodide has two ways of loading packages: - -- {js:func}`pyodide.loadPackage` for packages built with Pyodide and -- {py:func}`micropip.install` for pure Python packages from PyPI. - -The relationship between these tools is currently confusing. - -Our goal is to have three ways to load packages: one with no dependency -resolution at all, one with static dependency resolution which is done ahead of -time, and one for dynamic dependency resolution. Ideally most applications can -use static dependency resolution and repls can use dynamic dependency -resolution. - -See issues {issue}`2045` and {issue}`1100`. - ## Find a better way to compile Fortran Currently, we use f2c to cross compile Fortran to C. This does not work very