Zanie Blue
Zanie Blue
To share another real world example, I encountered this using ruff in a project that uses SQLAlchemy. Ruff fixed comparisons with `None` to use `is`/`is_not` instead of `==`/`!=` but this...
https://github.com/charliermarsh/ruff/issues/1852 has some previous discussion as well. @charliermarsh if you'd like I can open a new issue that tracks the general problem replacing `==` with `is` and enumerate the datatypes...
Here's the aforementioned tracking issue https://github.com/charliermarsh/ruff/issues/4560
Thanks for contributing! It looks like the ecosystem checks are showing some false positives e.g. https://github.com/apache/airflow/blob/48bfb1a970f5b47ba1b385ad809b8324923ddf3e/tests/providers/google/cloud/hooks/test_dataflow.py#L1956 — could you look into those?
Interesting idea! I'm not sure how we'd want to expose this but I feel the pain of finding versions. See also #2386 which defines robust logic we want to implement...
Also congrats on your first Rust pull request ❤️
Could you please share output with the `-v` flag as well as your requirements file?
What does a long time mean in concrete terms?
We're going to need more information to reproduce this. Please see issues marked as [great writeup](https://github.com/astral-sh/uv/issues?q=is%3Aissue+label%3A%22great+writeup%22+) for example.
For reference, we have some issues related to this: - #1209 - #1921