Taneli Hukkinen
Taneli Hukkinen
> much of the appeal of pyproject.toml support is to avoid having a separate config file for each tool in a project. IMO this appeal only applies to, as the...
Regarding the TOML file format, we could allow the `files` list to be a heterogeneous array where a string value is a shortcut for filepath, e.g. allow ```toml files =...
I think just like https://github.com/c4urself/bump2version/pull/221 this would most conveniently be fixed by allowing configuration in a `.bumpversion.toml` file, as TOML allows strings with leading and trailing whitespace.
Made the change to Dockerfile in https://github.com/sigp/lighthouse/pull/2021 and https://github.com/sigp/lighthouse-docker/pull/47 should make lighthouse-docker compatible too.
markdown-it-py v2.1.0 is the _only_ markdown-it-py version without Python 3.6 support. Unless there's a reason that rich must pin to the newest release or later, markdown-it-py dependency will work fine...
I'm experiencing something similar with Parity v2.5.12 and `eth_sendRawTransaction` RPC call. Pushed a transaction with 8 Gwei gas price at around 2019-12-25 22:40:30 UTC. It didn't get mined in the...
Hey, chipping in since I did quite a lot of research on this in https://github.com/sloria/environs/issues/120 :smiley: > I personally think the 1st option is easier... Getting the typings right might...
@mfwarren I would say the type annotations need to be loosened here. I made a PR for you https://github.com/sloria/environs/pull/188 Meanwhile you can fix mypy complaining by adding `assert isinstance(ENV_VALUE, str)`...
FWIW I'd personally rather see this as opt-in rather than default. I find myself using the following pattern on a rare occasion ```python try: ... except BaseException: # some teardown...
> If this approach is useful, it might be reasonable to add similar scripts for a few other pieces of low-level packaging infrastructure - in particular tomli and installer (cc...