Gregory Borodin
Gregory Borodin
Hi! I need some feedback on my python wrapper for your library. ### Build and Install Package uses setuptools extension interface, so it can be properly built and installed into...
See #80 for details
Suppose I can create user like this ```GraphQL mutation($login: String!) { createUser(login: $login) { login } } variables { "login": "grihabor" } ``` Now I'd like to create multiple users...
I'm trying to make jsonlogger wotk with dictconfig. I tried this: ```python def setup_logging(loglevel, path): cfg = { "version": 1, "disable_existing_loggers": True, "formatters": { "json": { "class": "pythonjsonlogger.jsonlogger.JsonFormatter", "format": "%(asctime)s.%(msecs)03d...
**Describe the bug** I've declared 395 resolves, and I'm trying to run mypy. Running `pants check ::` fails with OOM. The memory consumption >50G quickly escalates during `Resolve coarsened targets`...
# The problem Imagine you have a toml file `tables.toml` with sql tables defined: ```toml [tables.users] id = "int" name = "string" [tables.companies] id = "int" name = "string" ```...
[Makeself](https://github.com/megastep/makeself) is a small shell script that generates a self-extractable compressed tar archive from a directory. This backend provides a `makeself_archive` target which can package a makeself archive. Here is...
Fixes https://github.com/pantsbuild/pants/issues/20342 I had to move some code from `fix.py` to `_fix.py` to avoid circular dependencies. The actual patch is in [the `Respect FmtSubsystem` commit](https://github.com/pantsbuild/pants/pull/20343/commits/1d6968fe21598448056982250e8dd054d46aa088). It's easier to review each...