Nir Schulman
Nir Schulman
I've noticed setuptools_scm 8 is out. Does that mean development can continue on this? 😋
@tiangolo Considering the small size of the changes and the fact that it blocks using the newest versions of typer. we'd appreciate it if you could review this PR 🙏
I was getting the same issue and I was looking into this. I found the built-in script that pycharm uses in order to compute the differences and managed to "patch"...
I'd like to also add that you must use `TypeVar` if you want to use the new [PEP-696](https://peps.python.org/pep-0696/) added in Python 3.13.
> @UltimateLobster > > There's mo need for `TypeVar` (unless you prefer explicit variance) with PEP 696: > > ```python > class Spam[T = object]: ... > ``` Oops sorry,...
Happens to me as well in the newly released Pycharm 2024.2. Crash on startup while using the latest version of the plugin (1.25).
I've noticed [this comment](https://youtrack.jetbrains.com/issue/PY-75302/Start-Failed-at-com.uriyyo.evaluateasynccode.AsyncPyDebugConsoleRunnerFactory#focus=Change-27-10350741.0-0) in Jetbrains' issue tracker. Hopefully it can help the plugin's author resolve the issue faster. I've forked the source code and managed to make it not...
I encountered the same thing myself, I wanted to create the dockers asynchronously but I couldn't due to this. I had to override the relevant method (but it's really hacky...
It doesn't seem like there's enough information here to come to this conclusion because the `other` argument has no generic connection to `self` (The `T` is never used to annotate...
> Cool idea! You did what I wanted to but didn't have time to. You're right tho, it's kinda messy. Would this logic be better suited to living in PyCharm...