🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко)
🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко)
Oh, this reminds me that I forgot to increase the number of processes for pylint. flake8 already has `auto` set by default but pylint's config just sets a single job....
A few more forgotten bits: * https://github.com/abhinavsingh/proxy.py/pull/676 * https://github.com/abhinavsingh/proxy.py/pull/677
Actually, per comment in the config `0` is `auto`. Meaning it'll utilize more cores. I suppose you could run these tools manually and pass a different value to `--jobs=` in...
Import loop checker: * https://github.com/abhinavsingh/proxy.py/pull/678
Coverage.py config: * https://github.com/abhinavsingh/proxy.py/pull/679
A stricter dedicated pytest config: * https://github.com/abhinavsingh/proxy.py/pull/680
Enhancement to what's tested in the CI vs what makes its way to the PyPI: * https://github.com/abhinavsingh/proxy.py/pull/682
Pytest config hotfix: * https://github.com/abhinavsingh/proxy.py/pull/683
I noticed that setuptools emits a barely noticeable warning about multiline package descriptions, so here's the fix: * https://github.com/abhinavsingh/proxy.py/pull/684
@abhinavsingh how do you feel about replacing the hardcoded package version with one inherited from Git? Including versioning for the intermediate commits. I normally use setuptools-scm for this. I thought...