diff --git a/.circleci/config.yml b/.circleci/config.yml index 84c975567..b1e64b3c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ defaults: &defaults environment: - EMSDK_NUM_CORES: 4 EMCC_CORES: 4 - PYODIDE_BASE_URL: https://cdn.jsdelivr.net/pyodide/dev/full/ + PYODIDE_BASE_URL: https://cdn.jsdelivr.net/pyodide/v0.17.0a2/full/ jobs: lint: diff --git a/README.md b/README.md index 48beb2eec..2ad7d2c6f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ browser**. ## Try Pyodide (no installation needed) -Try pyodide in [Python REPL](https://pyodide-cdn2.iodide.io/v0.16.1/full/console.html) directly in your +Try pyodide in [Python REPL](https://pyodide-cdn2.iodide.io/v0.17.0a2/full/console.html) directly in your browser. For further information, look through the [documentation](https://pyodide.org/). diff --git a/docs/usage/loading-packages.md b/docs/usage/loading-packages.md index 1b7e13608..16bba7da1 100644 --- a/docs/usage/loading-packages.md +++ b/docs/usage/loading-packages.md @@ -3,7 +3,7 @@ Only the Python standard library is available after importing Pyodide. To use other packages, you’ll need to load them using either: - - {any}`pyodide.loadPackage` for packages built with Pyodide, or + - {any}`pyodide.loadPackage` for packages built with Pyodide, or - {any}`micropip.install` for pure Python packages with wheels available on PyPi or from other URLs. @@ -13,8 +13,8 @@ which case it relies on {any}`pyodide.loadPackage`). ``` Alternatively you can run Python code without manually pre-loading packages. -You can do this with {any}`pyodide.runPythonAsync` -which will automatically download all packages that the code snippet imports. +You can do this with {any}`pyodide.runPythonAsync` +which will automatically download all packages that the code snippet imports. It only supports packages included in Pyodide (not on PyPi) at present. ## Loading packages with {any}`pyodide.loadPackage` @@ -113,9 +113,9 @@ a complete example would be,
- + - + Pyodide test page