Pavel Brodsky
Pavel Brodsky
Would also like to see this feature. However, I'm not sure anything on the workflow side can affect it. It seems to be inherent to the underlying binary.
Well, it seems like simply adding "Browser" to the list of accepted options works fine. It doesn't have a logo and it says "Browser" instead of "Brave", but it works,...
It's not just the IDE. Running mypy on a project that uses these imports (Azure in our case) runs _forever_ (maybe 6 minutes vs ~20 seconds without it). And yes,...
I also needed to do something like this (wanted to `pip install mysqlclient`), and was getting errors because `mysql-devel` wasn't installed in the image. A solution I could live with...
Is there a best practice to avoid running into multi-processing issues when working with JSII? We're trying to speed up rendering of all of our resources (using `cdktf` and `cdk8s`)...
I'd still be happy to hear if there are plans on this front or not. Do close the issue if this is not something that's on your roadmap, of course,...
FWIW, we're using a ThreadLocal lock object in our Python code whenever we call JSII (specifically cdktf, in our case) 🤷♂️ It's not a great solution, as obviously it negates...
Hi, I reached this issue after encountering slow import times for cdk based libraries (we're using `cdktf`, but the "culprit" is `jsii`). Once I saw the experimental caching solution, I...
Note that [caching](https://github.com/aws/jsii/discussions/3895#discussioncomment-5127481) has been implemented, and allows for _much_ quicker subsequent runs.
I'm a little confused. I would've assumed that this would've been sufficient: ```bash poetry config repositories.REPO_NAME https://artifactory.XXX.com/artifactory/api/pypi ``` But it seems that setting the config globally doesn't negate the need...