Matthieu Devlin
Matthieu Devlin
Can reproduce with a simple example of two projects (lib-a and lib-b), ```toml [tool.poetry] name = "lib-a" version = "0.1.0" description = "" authors = ["John Smith "] packages =...
@dimbleby yes, that was the problem for us, changing that in our `pyproject.toml` fixed our problems.
By setting the `PYTHONPATH` to the `site-packages` within the external virtualenv, for example `PYTHONPATH=/PATH_TO_VENV/.venv/lib/python3.11/site-packages deptry .` will work (at least with python3.11). Seems like https://importlib-metadata.readthedocs.io/en/latest/api.html#importlib_metadata.DistributionFinder might be the way to...
> Did you see my comment: [#2043 (comment)](https://github.com/typeddjango/django-stubs/issues/2043#issuecomment-2041361782)? Yes, but that means the developer has to know about these "magic" kwargs in a number of functions. IMO, the plugin should...
I tried to set this up for webpack4 but it looks like it is not supported - I get a `Cannot read properties of undefined (reading 'tapPromise')` and I see...
I have also found that web-vitals data for my site are seemingly incorrect. We have long recorded web vitals data using the [`web-vitals`](https://www.npmjs.com/package/web-vitals) package, and we have noticed that the...
> Hey [@md384](https://github.com/md384) thanks for providing this data! > > I can see a couple of things that might explain the discrepancies: > > * we collect all web vitals...
> [@md384](https://github.com/md384) which version of the `web-vitals` library are you using? Currently `3.5.0`. I will try upgrading to the latest and seeing if we get different results.
@Lms24 confirmed the same results with web-vitals 4.2.3 For LCP which has the largest discrepancy  TTFB and FCP looks the same as before too - typically TTFB is a...
I think some other examples of this are serializing data for partners with different requirements. As an example (taken from above), ```py from pydantic import BaseModel filter_set = {3, 4,...