Kyrylo Shpytsya

Results 26 issues of Kyrylo Shpytsya

Is it possible to use `typing_inspect` to achieve the following? ```py from typing import Any, List, TypeVar import typing_inspect class C: x: int def __init__(self, x: int) -> None: self.x...

Would a functionality (probably implemented as an external plugin) of directly building wheels, instead of going the `setup.py bdist_wheel` route, similar to what is done by [flit](https://github.com/takluyver/flit), be of interest?...

Equals sign in property override passed via `-P` option causes ``` ValueError: too many values to unpack (expected 2) ``` which is understandable, given the code: https://github.com/pybuilder/pybuilder/blob/854c6851e43f52dd053130cf98022176dc59beab/src/main/python/pybuilder/cli.py#L203-L204 As simple fix...

bug

The https://github.com/pybuilder/pybuilder/issues/214 which suggests the use of `eval` to allow arbitrarily complex data, appears to be in state of limbo. I, personally, would favour the use of `json` instead but...

What would be a proper setup for `project.version` to be retrieved via [setuptools_scm](https://github.com/pypa/setuptools_scm)? Key issues I run into when trying to naively do it in `build.py` are: - cannot `import...

Currently, `hashi-ui` is hard-coded to use `GiB` as a unit of measure of RAM. This is highly impractical on small Nomad client instances (which we use a lot in our...

enhancement
help wanted
javascript

`hashi-ui` should (optionally) indefinitely retry connections to nomad instead of failing to start.

enhancement
help wanted

(Optionally) provide a way to report all violations, both of strictyaml's extra restrictions and those of schema, and not just the first one. I do realize that this may involve...

nice to have

strictyaml version 0.4.1 > import strictyaml as sy > sy.load("1: a", sy.MapPattern(sy.Int(), sy.Int())) YAMLValidationError: when expecting an integer found non-integer in "", line 1, column 1: '1': a ^ One...

nice to have

I am looking for a way to refer to result type of an overloaded function. To illustrate: ```py import typing as tp T = tp.TypeVar("T") @tp.overload def gf1(i: int, j:...

topic: feature