Seth Morton
Seth Morton
First, thanks for the great tool! The interpolation behavior of config files by `bumpversion` and `setuptools` is not the same. `bumpversion` uses no interpolation (e.g. [`configparser.RawConfigParser`](https://docs.python.org/3/library/configparser.html#configparser.RawConfigParser)), but `setuptools` uses the...
The CMake style in this template is not the preferred style anymore. The CMake folks are advocating for "Modern CMake" (https://cliutils.gitlab.io/modern-cmake/, https://gist.github.com/mbinna/c61dbb39bca0e4fb7d1f73b0d66a4fd1), which from my understanding attempts to define everything...
While attempting #37 I ran into some troubles with how cumbersome changing things was. Maintenance has become a problem. This is mostly because the code is written in pure C....
**Describe the feature or enhancement** The proposal is to change how `isfloat` interprets strings. Currently, it has the following behavior: ```python >>> isfloat("56") True >>> isfloat("56.0") True >>> isfloat(56) False...
I notice it has been over a year sine PyInquirer was last released, but there have been several updates since then. In particular, I am interested in the update to...
```python import PyInquirer answers = PyInquirer.prompt( [ { "type": "confirm", "message": "Do it:", "name": "DO_IT", "default: True, "when": lambda x: "THING" in x, } ] ) print(answers) # {} ```...