Philippe Pepiot

Results 74 comments of Philippe Pepiot

Hi, you can read version from package metadata using pkg_resources: ``` >>> import pkg_resources >>> pkg_resources.get_distribution('anosql') anosql 1.0.1 (/home/ppepiot/venvs/transdev/lib/python3.5/site-packages) >>> pkg_resources.get_distribution('anosql').version '1.0.1' ```

Hi, I dig into an issue where files uploaded to pyftpdlib with lftp 4.8.4 / GnuTLS 3.7.1 (debian stable) where truncated above a certain size. I guess lftp/gnutls doesn't handle...

I think this can already be done with `asv run $(git tags -l | xargs)` for git and `asv run 'tag()'` for mercurial.

Ok maybe ``asv run $(git tag -l | awk '{ print $1 "^.." $1 }' | xargs)`` ?

Hi, as described by ``imago --help``: ``` -l string Kubernetes labels selectors Warning: applies to Deployment, DaemonSet, StatefulSet and CronJob, not pods ! ``` In your deployment you probably assign...

Thanks for reporting this ! I think we should use `docker.ParseReference()` for this.

Hi, I guess this is not working with imago because you don't have tls or a verified certificate on your registry server. In your case imago might not the best...

Oh, ok you're building inside the single-node cluster. Maybe I can do something in imago to make this works. But I still think you can do this in a single...

Great. Yes I think we can add support for local docker registry.

Hi, thanks for reporting ! imago should be able to works with multiple public and private registries (I tested against docker hub, quay.io and docker private registry). When image doesn't...