James Myatt
James Myatt
@devmcp https://github.com/hackebrot/pytest-cookies/issues/41
Simplest solution that avoids adding dependencies is to dump the config as JSON, since YAML is a superset of JSON.
I think this is an issue with [poyo](https://pypi.org/project/poyo/), which is used by cookiecutter < 2.
You can get this directly using `pkg_resources`, as described in the code in bullet 5 here: https://packaging.python.org/guides/single-sourcing-package-version/
Main issue is that `setup.py install` doesn't install the requirements. But there's more, e.g. see https://stackoverflow.com/a/15731459/21322. In fact, the recommended syntax is `python -m pip install .` or `python3 ...`....
Doesn't look like it, but it could be implemented like for a decision tree, rather than for a logistic regression. Remember this is not the "probability of correct decision"; only...
flake8 should be configured to match black, otherwise they will fight each other. https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
The main issue is to map-out the Homie ecosystem, look at what it does and how it works, compare them to the other open-source projects out there, work out which...
Thanks @nielsnl68. I'll do this either tonight or tomorrow.
I've uploaded some configs to https://gist.github.com/jamesmyatt/39d0bd0d057110193d3a2e6b297869f6 * `not-working.yaml` - the full file that doesn't work * `working.yaml` - reduced config above and that actually does work These results are now...