Henry Schreiner

Results 2507 comments of Henry Schreiner

You need to add `--skip-dependency-check`. It’s opt-out on `build` and opt-in on `pip`. That’s looking for the Python package but FreeBSD isn’t able to get wheels.

Users also can fix by being explicit, like in https://github.com/pypa/setuptools_scm/pull/708. Or by ensuring the file ownership has a consistent user all the way up (tar needs the flag in the...

This line needs to specify the git root explicitly: https://github.com/scipy/scipy/blob/69834743023220f0073ac9565cb5783c7a2dd433/tools/version_utils.py#L84

You could also just write out a version.py file in CI manually.

Can you patch the command, that is, ```python out = _minimal_ext_cmd(['git', "--git-dir", git_dir 'rev-parse', 'HEAD']) ``` I'm guessing git_dir would be something like `$PWD/.git`. That would fix the problem because...

That seems pretty reasonable to do, but just curious, why is colorama even present? It should not be installed on linux/macOS generally.

Let's get 0.8.0 out first, then I think this is should go in. This is also part of why I added that per-file SDist/wheel test. ;)

Why are folders no longer there?

Ouch. Adding a copy of the library would likely not affect the zip size much (duplicated data - at least ideally it wouldn't), but would double the unpacked size. Can...

Hmm, `pip install psycopg` would then depend on the patch version of CPython? I think pip should still likely make the symlinks too, because the site packages are only gated...