Joseph Tilahun

Results 10 comments of Joseph Tilahun

We also encountered this issue when adding the `yubikey-manager` package to the list of requirements in our requirements file. requirements.txt ``` yubikey-manager>=5, [13 lines of output] running bdist_wheel running build...

It looks like #824 is tracking adding support for building C/C++ extensions. Perhaps another possible approach would be to build the missing wheels directly in Bazel? I haven't looked into...

Just echoing that I'm also unable to configure [pcsclite](https://pcsclite.apdu.fr/) on my Ubuntu host. Bootstrap errors out: ``` $ ./bootstrap + test -f Makefile + rm -rf autom4te.cache aclocal.m4 config.guess config.log...

Looking around the codebase, I'm noticing that the `SuppressWarnings` annotation is used in a few places in the codebase. In particular, `@SuppressWarnings("unchecked")` appears in a few places. Are there any...

Huh, it's unfortunate that the log isn't insightful. I have `scie-pants` version 0.10.0 installed. ``` jtilahun@JTN86G3:~/devel/monorepo$ PANTS_BOOTSTRAP_VERSION=report pants 0.10.0 ```

Here are answers to those questions: 1. The operating system is Linux Ubuntu 20.04. 2. I installed `scie-pants` by using the `get-pants.sh` script referenced in the Pants installation documentation ([link](https://www.pantsbuild.org/docs/installation))....

Hmm, there's something going on that I haven't grasped quite yet. I tried isolating this to a minimum reproducible example of `dirs::home_dir` failing. Here's what I have: `src/main.rs` ``` fn...

If I run it without any env vars at all, it's still able to find my home directory: ``` jtilahun@JTN86G3:~/devel/monorepo/target/debug$ env -i ./main Your home directory, probably: /home/jtilahun ```

I tried with a newer `dirs` and `dirs-sys`, but no difference. ``` jtilahun@JTN86G3:~/devel/monorepo/target/debug$ env -i ./main Your home directory, probably: /home/jtilahun ``` Here's my `Cargo.toml` file now: ``` [package] name...

I haven't known where `~/.nce` comes from, given that no such file or directory exists for me: ``` jtilahun@JTN86G3:~$ ls ~/.nce ls: cannot access '/home/jtilahun/.nce': No such file or directory...