Commit Graph

11 Commits

Author SHA1 Message Date
Hood Chatham baac136b64
Run `make -C packages update-all` (#4712)
Packages that I reverted:

bitstring, fiona, gdal, matplotlib, numcodecs, packaging, pandas, Pillow,
pillow_heif, protobuf, pyinstrument, rebound, reboundx, scipy, shapely, spareqr,
river, xgboost, yt, zarr
2024-04-30 15:51:48 +02:00
Gyeongjae Choi 88e988e2ea
Update packages for 0.24.0 (#4088) 2023-09-02 02:53:56 -07:00
Hood Chatham 48309e65db
Run make -C packages update-all (#3348)
Upgrade 75 packages. The following packages have not been upgraded
because of test failures:

* matplotlib
* packaging
* Pillow
* rebound
* reboundx
* xgboost
* yt
* zarr
2022-12-15 15:08:24 -08:00
Gyeongjae Choi 555f7828f4
Parse top-level import name from wheel file (#3006) 2022-09-06 15:20:04 +09:00
Hood Chatham f784e5e3d0
Use wheels instead of sdists for pure Python packages (#2126) 2022-02-12 16:44:10 -05:00
Hood Chatham 79c6688535
Run pyodide-build update-all (#2085) 2022-01-10 11:54:11 -08:00
Hood Chatham 4c36ad548f
Ran make -C packages update-all (#1704) 2021-07-18 15:04:28 -07:00
Hood Chatham aa9eca481c
Used pyodide_build auto package update system (#1460) 2021-04-18 12:37:14 -07:00
Roman Yurchak 67eab0c082
MNT update pure python packages (#745) 2020-10-17 09:07:19 +02:00
Sergio 9398f4083b Update versions of various python packages (#570) 2019-11-25 12:58:42 -05:00
Marc Abramowitz d14eee1161 Add docutils
Example: If you do this:

```js
languagePluginLoader.then(() => {
  // pyodide is now ready to use...
  pyodide.loadPackage('docutils').then(() => {
    pyodide.runPython(`
import docutils.core

print(docutils.core.publish_string("\`Python <http://www.python.org/>\`_ is **cool**!", writer_name='html5', settings_overrides={'embed_stylesheet': False}).decode('utf-8'))
    `);
  });
});
```

then the output is:

```
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8"/>
<meta name="generator" content="Docutils 0.14: http://docutils.sourceforge.net/" />
<title>&lt;string&gt;</title>
<link rel="stylesheet" href="/lib/python3.7/site-packages/docutils/writers/html5_polyglot/minimal.css" type="text/css" />
<link rel="stylesheet" href="/lib/python3.7/site-packages/docutils/writers/html5_polyglot/plain.css" type="text/css" />
</head>
<body>
<div class="document">
<p><a class="reference external" href="http://www.python.org/">Python</a> is <strong>cool</strong>!</p>
</div>
</body>
</html>
```
2019-03-15 08:14:58 -07:00