Iwan
Iwan
I have the same issue with pip 10.0.1. It can be reproduced if you have a package which fails to install if it is not from a wheel, e.g. because...
Is there any update on this? I created a functional test for it and attempted a fix in this commit: https://github.com/iwanb/pip/commit/6ead47f2f155cff335f2b5b36034519957c95b23 I am not familiar with the code so if...
Maybe a solution could be to have special support for flake.nix "Apps" so it aligns with "nix run"? https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-run.html#apps EDIT it seems adding outPath can be a workaround (at least...
In case that would be useful to others, my workaround it to copy the wanted files using `git archive` to a new repo and then call nix build on that,...
There was also a [thread on hackernews](https://news.ycombinator.com/item?id=44107473) about this.
> Tested again, this time with really running it. 🏁 > > You could add artefacts to the CI by adding to `.github/workflows/main.yml`: > > ```diff > - name: Build...
I've updated it to build the new cpp and PINE based client. It needed a couple harmless changes, but I'm not 100% sure about the needed change in `decompile/General/AltMods/OnlineCTR/global.h`. I...
I tried and just adding this route seems to work, so maybe actix is just smart enough to handle it? I don't really see any code in `NamedFile::into_response` that would...
I agree that it would be better as a fleshed out PEP :) The idea is that the descriptor returns the type you use to annotate on instances of the...
> how would you write a stub definition for ExampleWish so that a type checker reading only the stub, without access to the source code, would type ExampleWish.x as Constant[int]?...