Christopher MacGown
Christopher MacGown
Until a new version is pushed, you can add the following to your Cargo.lock to get around the issue temporarily. ``` [root] name="your-package-name" ``` Doing so will cause _other_ cargo...
We're writing code to make it so roundabout automatically runs the tests when it detects a pull request. That'll be merged soonish (a couple weeks at the latest)
You're right, case-insensitivity should be handled better there perhaps by replacing the lgtm comparison with: https://gist.github.com/7e32d9fe5f8d183c92df
I used a regex for the check because I wanted case insensitivity. The LGTM is only counted if the entire string is the LGTM token… so the regex is kind...
Before I can consider this, I need to figure out how to avoid a race condition if two pulls are requested against master at the same time and can't merge/ci...
Regarding the failed test, `distutils` was deprecated in Python 3.10 and removed in Python 3.12. The test job pins poetry to 1.4.2, but the first version of poetry that supports...
I added Python 3.13 to the test matrix to try and get coverage there but it looks like there aren't ~~ryu wheels for it yet~~. The uvloop dependency was broken...
The [CodeFactor](https://www.codefactor.io/repository/github/collerek/ormar/pull/1395) report is about a vulnerability in multipart/form-data in starlette versions prior to 0.40.0. In order to clear that report and update starlette, the fastapi pin will need to...
The `act` command has a `--defaultbranch` parameter that when set will apply your default branch.