Jan Fabry
Jan Fabry
On http://django-imagekit.readthedocs.io/en/latest/ the latest version is 3.2.6. Other branches there also don't seem to have anything recent. The builds seem to fail, this seems to be the first instance of...
## What happened? Black defines a line length of 88 characters, but other places still configure 120 characters: - `setup.cfg` - `.pylintrc` ## What should've happened instead? Consistency: use 88...
We set the `pointer-events` manually to `auto` (since #22, modified in #75), but it would be nice if the value would be configurable. Example use case: I would like to...
These were refactored out of `CompoundPiClient` into `CompoundPiServerList` in #26, but the GUI code was not updated. With this fix, finding servers in the GUI works again.
readline is not supported on Windows, [pyreadline](https://pypi.org/project/pyreadline/) is a Python-only alternative. With this fix, the CLI can run on Windows.
For immediate tar-extraction etc. Not sure we really need this. Maybe we should remove the `wget` command altogether? It doesn't add that much value.
- Update download URL - Compile in src/ dir - Create separate conf_dir and log_dir - No need to touch logfile, just chown dir - Remove duplicate methods (incorrect copy-paste)
Only replace the newlines that were initially there.
Pipe Python code via heredoc to Django shell. Crude, but it works. `--plain` always uses the regular Python instead of IPython, this gives us consistency over all servers.
Take this case: ``` python class a(A): class Hosts: app = [host0, host1] lb = [host2, host3] @map_roles(host=('app', 'lb')) class git(Git): pass ``` Now I can do the following to...