Jan Tojnar

Results 824 comments of Jan Tojnar

I think you are supposed to include the unit test into the tarball but not into the wheel. Looking through the [packaging docs](https://packaging.python.org/), I could not find anything mentioning whether...

Requests seem to add it through `MANIFEST.in`: https://github.com/requests/requests/blob/master/MANIFEST.in

This simplified code exhibits the behaviour ``` rust use std::process::Command; fn main() { execute(String::from("bash -i -c rrun")); } fn execute(cmd: String) { match Command::new("bash").arg("-c").arg(&cmd).spawn() { Ok(_) => println!("Ok"), Err(e) =>...

No, it does not work for me with the default config. And I had not much luck trying to come up with better one.

Some more details when I run `rrun` and enter `true`: ``` shell $ ps -o pid,state=,command | grep bash 14095 R bash -i -c (history -s true; history -a) &&...

Forgot Repology metapackages are something else than Debian metapackages, moved to https://github.com/repology/repology-rules/issues/484

Sorry, I forgot about this. Is this still needed?

Node 14 is the [oldest supported Node version](https://nodejs.org/en/about/releases/) so I would say people really should update if they want to use Napalm.

The simplest is probably creating a new nixpkgs instance with overlay added to overlays. https://github.com/jtojnar/nixfiles/blob/b062127e9dc616249fb5e39204ae910c3470ed6b/flake.nix#L50-L58 Then, you will be able to use it through pkgs.napalm.

I tried reproducing it in a virtual computer and the authentication dialogue was displayed correctly even with Polari running. I tried running it on my profile and the same log...