mschwager

Results 68 comments of mschwager

I think it's worth going over all the different import styles in Python. Python is fairly representative here, so we can extrapolate to other languages as well. To my knowledge,...

Dropped from "2020 July - Rule in Under 5 Minutes" since we've achieved this sprint's goal of porting 10 Brakeman rules to smoketest Ruby support.

Hey, glad to see this change! Regarding false-positives from `flake8`: if you simply want to include Dlint to search for potential security issues and bugs you can run `python -m...

As someone moving from Docker + Docker Compose -> Podman + Podman Compose, this really caught me off guard. IMO this is a small UX feature that should really be...

Upon closer inspection, it looks like perhaps SIGINT is expected to work: https://github.com/containers/podman-compose/blob/d704622522c3b4e517b084ad87bd4a15a29311c3/podman_compose.py#L2283-L2303 Is there some weird interaction with the scoping of `tasks` here? In other words, when the `lambda`...

It appears the SIGINT handling code hasn't been released yet. It was committed in Feb 2024: https://github.com/containers/podman-compose/commit/38b13a34eaaff02538aec8b7d35ee98b48884c8c. Looks like the current Podman Compose version is `1.0.6`, and the start of...

+1 for not requiring `rake-release`. By default, that tool attempts to create a git tag and push it. This means it's incompatible with GitHub Actions jobs that only run on...

> https://github.com/rubygems/rubygems/blob/072176243027a60e20ffe6976ec59b45bc65f351/bundler/lib/bundler/gem_helper.rb#L76 by default bundler's rake task checks if the tag already exists Ahh, good to know. Although that requires the tag to be formatted like `vX.X.X`, whereas I usually...

Could this issue be related to https://github.com/docker/docker-py/issues/1507 or https://github.com/docker/docker-py/issues/983? I've done some investigation there, but haven't come to any conclusions.