-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable test CI + more packaging improvement (#3)
- Loading branch information
Showing
23 changed files
with
2,587 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: pyodide | ||
open_collective: pyodide |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
comment: false | ||
codecov: | ||
branch: main | ||
require_ci_to_pass: false | ||
notify: | ||
wait_for_ci: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__pycache__ | ||
micropip/_version.py | ||
*.egg-info | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
from ._micropip import _list as list | ||
from ._micropip import freeze, install | ||
|
||
__all__ = ["install", "list", "freeze"] | ||
try: | ||
from ._version import __version__ | ||
except ImportError: | ||
pass | ||
|
||
__all__ = ["install", "list", "freeze", "__version__"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# _pyodide is imported at the very beginning of the initialization process so it | ||
# cannot import from js, pyodide_js, or _pyodide_core. The one class here that | ||
# does use such functions is JsFinder which requires access to | ||
# _pyodide_core.JsProxy. | ||
# | ||
# register_js_finder is called from pyodide.js after _pyodide_core is completely | ||
# initialized. | ||
# | ||
# All pure Python code that doesn't require imports from js, pyodide_js, or | ||
# _pyodide_core belongs in _pyodide. Code that requires such imports belongs in | ||
# pyodide. | ||
from . import _base, _importhook | ||
|
||
__all__ = ["_base", "_importhook"] |
Oops, something went wrong.