Casper da Costa-Luis
Casper da Costa-Luis
- `apk --update` for latest versions - `apk --virtual` for temporary build depenencies - misc fixes from other issues/PRs (#29, #32)
Just re-built now, and in the browser UI it no longer renders stats. Instead there's a pop-up error saying: > :warning: **Templating [fromdomain]** > Error updating options: Support for Elasticsearch...
There are several youtube playlists managed by PyData (https://www.youtube.com/user/PyDataTV/playlists), and it would be nice to keep them in sync with this repo. For example, [YouTube: PyData London 2019](https://www.youtube.com/playlist?list=PLGVZCDnMOq0ocea1dd0it7jX7HgvZCjSW) with https://github.com/pyvideo/data/tree/master/pydata-london-2019....
First off, I'd like to say this is a great tool which makes `pip` almost as powerful as `conda`. However, running `pip-autoremove -L` can incorrectly list packages which are sub-dependencies:...
probably fixes most of the issues on this repo. #747 #737 #708 #722 #724 #739 #745 #735 etc... can test this by doing: ```bash apm install casperdcl/linter-flake8 ``` followed by...
`params` seems to be supported for: - `track_function` - `SuiteClass.setup` - `SuiteClass.track_function` but not if both `SuiteClass.setup` and `SuiteClass.track_function` are defined. ```python class IterSuite: def setup(self): # works if `setup`...
Support - content streams (like `requests.Response.iter_content`), or - per-chunk callbacks (like `urllib.urlretrieve(..., reporthook=...)`)
Use cibuildwheel [setup](https://cibuildwheel.readthedocs.io/en/stable/setup/#github-actions) + [options](https://cibuildwheel.readthedocs.io/en/stable/options/) (e.g. https://github.com/benfred/implicit/blob/main/pyproject.toml) to precompile C++/CUDA?
- continue using an `ndarray` subclass + https://numpy.org/doc/stable/reference/arrays.classes.html + https://numpy.org/doc/stable/user/basics.subclassing.html - or use array containers + https://numpy.org/doc/stable/user/basics.dispatch.html - define `__array_function__`? - define `__array_ufunc__`?