Roman Inflianskas

Results 105 comments of Roman Inflianskas

@webknjaz Unfortunately, `tox` tests did not pass on my machine, so I had to make this change. However, I understand your point about unrelated changes, so I split this PR...

I tried to add workaround for installing `trustme`: see https://github.com/aio-libs/aiosmtpd/pull/552#discussion_r2041036210 and https://github.com/aio-libs/aiosmtpd/pull/552/files#diff-4d7c51b1efe9043e44439a949dfd92e5827321b34082903477fd04876edb7552R8-R9, however it didn't work because of PyPy trying to build `cryptography`: ``` error: the configured PyPy interpreter version...

> I'm pretty sure cryptography has older published wheels that would be compatible. You are right, `cryptography==41.0.7 ` has compatible wheels published. I updated my PR. However, this version has...

I had to read PEP 496, I didn't know about `platform_python_implementation` marker. Thanks! Done.

By some reason approach does not work on Python 3.6, Python 3.7 (works on later versions of Python). I will investigate.

I had this issue too. For me the fix was to switch the shell for the user to `/bin/bash`.

This is caused by changes in CPython: https://github.com/python/cpython/pull/114839. > The combination of _tstate_lock and _ThreadHandle is replaced by _ThreadHandle and the supporting infrastructure for _tstate_lock is removed. Also, the latest...

I am working on extending this to other commands.

Many of commands take snapshot ID as argument. It would be possible to complete these IDs by opening the repository and listing snapshots in `ValidArgsFunction` (see [cobra docs](https://github.com/spf13/cobra/blob/v1.8.1/site/content/completions/_index.md#dynamic-completion-of-nouns)), however in...

It looks like Google Cloud monitoring library (https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-monitoring) does not support Python 3.13: ``` TypeError: Couldn't build proto file into descriptor pool: duplicate symbol 'google.monitoring.v3.__firstlineno__' ``` See: https://github.com/celery/kombu/actions/runs/11343305734/job/31545591989?pr=2052#step:7:1141