Matthew Gamble

Results 65 comments of Matthew Gamble

Thanks for the explaination, I appreciate it :heart:

I'm pretty sure this is an issue with the default colour scheme when you select the dark theme. The current date uses the 'accent' colour, which is by default configured...

This issue also affects comparisons. I have tests that are trying to run this code: ``` assert actual == expected ``` Where `actual` and `expected` are Pydantic models that contain...

This `--mount` syntax is no longer experimental. It would be great to see support for this added :pray:

Any kind of list sorting needs to be based on content-specific policies. It isn't really feasible to implement such a thing within a linter.

I recommend using Renovatebot rather than Dependabot. It can group updates to avoid unnecessary PR noise. It's also more powerful and flexible, with the ability to maintain more dependencies on...

> advise against Poetry and any other dependency management that caps dependency versions Poetry doesn't force you to use the `^` operator for version pinning. It still accepts all of...

> because it promotes fragile behaviour by default I have to argue quite the opposite. Promoting the use of unconstrained dependencies that allow automatic upgrades to broken versions (ie. new...

> This is where it actually is better to not try to be smarter in my experience, and where Poetry failed us a few times: see [Backsolving is usually wrong](https://iscinumpy.dev/post/bound-version-constraints/#backsolving-is-usually-wrong)....