Danilo de Jesus da Silva Bellini
Danilo de Jesus da Silva Bellini
I'm trying to do some processing on some data, but as it seems some information is lost even when I'm not doing anything but saving what I've loaded: ```python import...
Some AudioLazy methods lacks automated testing. Coveralls says the least covered file is the lazy_filters.py, and most of the tests it's lacking is about its interface with Matplotlib. It seems...
The `LinearFilter.plot` method samples nicely for linear plots, but when asked to output logarithmic plots (i.e., when fscale == "log") the `freqs` (and `freqs_label`) sampling values should also be logarithmically...
Dose should deal with exceptions that comes from the watchdog observer, like: ``` OSError: inotify watch limit reached OSError: Permission denied ``` These errors are triggered when the `watchdog.observers.Observer.start` method...
Today, dose.py has a GUI configuration as well as a CLI command-line approach that allows a fast call like `dose tox -v` or `dose "cat my_code.lang | my_interpreter.sh"` and many...
Colors are something that can be easily modified in the Dose code. The most difficult part is to create a good interface for it. This issue is a plan for...
This is a proposal for new features in Dose. # Choosing the wxPython version Since Dose is compatible with wxPython Classic 2.8, wxPython Classic 3.0 and wxPython Phoenix, I was...
I don't like the way the "file pattern glob" is used today in dose. There's already one common file to store a list of ignoring patterns: `.gitignore`. One can get...
A setup script is missing for this project. The installation could include a `fractal` script, besides the `python -m fractal` command. Also, it would be nice to include an update...
This is a required step as `Pipeline._validate_steps` method is not called by scikit-learn during construction, but it's expected by tests. I tried running it with scikit-learn v1.2.2 and scikit-learn v1.3.0....