Philip Couling

Results 27 issues of Philip Couling

`poetry update` ensures that all versions of python will be compatible and report an error if not. From the FAQ: > Unlike pip, Poetry doesn’t resolve for just the Python...

kind/feature
area/pyproject

Problem description ------- The use of an async context manager as the only way into having a client can be very awkward to work with, especially where the client is...

- [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo and believe that this is not a duplicate. - [x] I have searched the [FAQ](https://python-poetry.org/docs/faq/) and general [documentation](https://python-poetry.org/docs/) and believe...

kind/feature
status/triage

**Description** ------ [Enabling IPv6 Linux](https://docs.docker.com/config/daemon/ipv6/) can immediately remove the host's own IPv6 default gateway and other routes, effectively breaking its IPv6 access to the outside world. This issue affects any...

## The Problem At the moment the only way to get structured output from pytest is via `--junitxml` or installing a plugin. The problem with junitxml is that, as a...

type: proposal
topic: reporting

I'm hunting for an issue explaining this in the documentation (found [here](https://pypi.org/project/paho-mqtt/)), but I've not found one: > Also when clean_session is True, this library will republish QoS > 0...

Type: Enhancement
Status: Available

[Wrapped lists](https://xsdata.readthedocs.io/en/latest/examples/wrapped-list.html) are really useful for simplifying python data structures. Looking through the documentation, I don't see any way to make this work with `xsdata generate `. It would be...

enhancement

## 📒 Description Adds new feature to code generation to detect wrapped lists and unwrap them in dataclasses, using the [wrapped](https://xsdata.readthedocs.io/en/latest/examples/wrapped-list.html) feature. Resolves #927 ## 🔗 What I've Done -...

I'm having problems with `py2dsc` not interacting well with PEP 517 `requires` [see here](https://www.python.org/dev/peps/pep-0517/#source-trees). For example if using `setuptools_scm` to control version numbering the pyproject.toml might look like this: ```toml...

Similar to #20 but subtly different. I'm having trouble with a race condition formed of the following: Main thread: - Creates Observer - adds Stream - starts Observer thread -...