Chris Wright

Results 13 issues of Chris Wright

**Current Problem** I'm running coverage for multiple Python versions on both Linux and Windows. They are all run on Gitlab, with the Windows tests using Python install on the host,...

enhancement

The only way to make an option return a vector appears to be via variable assignment to a vector. The _subcommands in files_ example shows use of `std::shared_ptr` to manage...

Replaces use of `dynamic_cast` with member functions on `schema`. This is currently a minimal implementation, since most derived classes will return `nullptr`, but this is easy to remedy if the...

`dynamic_cast` often requires RTTI to be enabled. If possible, it would be helpful to replace usage of `dynamic_cast` with some other mechanism so that this library can be used in...

A cache hit status message is logged twice when debug level is set appropriately, e.g: ``` BuildCache[99136] (INFO) Cache hit (0a834a3c136cc9508d1a0df960e869b4): object => my_object.o BuildCache[99136] (INFO) Cache hit (0a834a3c136cc9508d1a0df960e869b4) ```

bug

Passing the `\` character to the daemon in the `containers.create` method command argument requires escaping twice, once for the string in Python, and then again for something that requires it...

CMake already only includes the `zconf.h` header from the out-of-source build directory, making renaming of the file in the source directory unnecessary. Closes #162

`MP4V2_PROJECT_build` is currently defined in `project.h`. This is included in `mp4v2.h` which is then included in many more places. Whenever the project is reconfigured (in my case any time I...

With the following files in the current working directory: ```dockerfile FROM python:3.11 RUN echo "Hello, world!" ``` ```python from python_on_whales import docker docker.build('.', file='Dockerfile', tags='test', pull=True, cache=False) ``` Running the...

Closes: https://github.com/plotly/plotly.py/issues/4724 ## Documentation PR - [x] I've [seen the `doc/README.md` file](https://github.com/plotly/plotly.py/blob/master/doc/README.md) - [x] This change runs in the current version of Plotly on PyPI and targets the `doc-prod` branch...

P2
community
fix