Commit Graph

9 Commits

Author SHA1 Message Date
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 da019813a5
Package updates from Python 3.9 branch (#1639) 2021-06-16 23:57:56 +02:00
Hood Chatham aa9eca481c
Used pyodide_build auto package update system (#1460) 2021-04-18 12:37:14 -07:00
Dexter Chua 170c52d6ea
TST Convert some package tests to use new test system (#1132) 2021-01-13 12:07:50 +01:00
Roman Yurchak 67eab0c082
MNT update pure python packages (#745) 2020-10-17 09:07:19 +02:00
Roman Yurchak 9afc7a1617
STY Apply black for code style (#702)
* Apply black

* A few fixes

* Relax flake8 checks

* Exclude tools/file_packager.py from black
2020-06-28 20:24:40 +02:00
Roman Yurchak 2cf8639973 MAINT Move package tests under packages/ dir (#471)
* Move package tests under the packages/ folder

* Fix tests
2019-06-19 14:26:08 -04:00
Marc Abramowitz 875df76b2f Add Jinja2 and MarkupSafe (#359)
```javascript
_ = languagePluginLoader.then(() => {
  // pyodide is now ready to use...
  pyodide.loadPackage('Jinja2').then(() => {
    pyodide.runPython(`
import jinja2

template = jinja2.Template('Hello {{ name }}!')
print(template.render(name='Zach'))
    `);
  });
});
```
2019-04-04 13:56:56 -04:00