Jason R. Coombs

Results 1062 comments of Jason R. Coombs

> * Am I missing the point and is setuptools only meant to be an interface to/from PyPI? (The host of other commands such as `build_sphinx` or `flake8` would indicate...

> cant merge this yet as opting out of the file finders possibly opts into version finding + there is a bug In https://github.com/pypa/setuptools_scm/pull/364#discussion_r349931908, I advocated for there being a...

> I'd like to get a reading on how likely a patch is to be accepted Thanks for the offer and taking the time to get an early read... and...

How would you imagine this command would work? Something like how [bumpversion](/peritus/bumpversion) works, except under `setup.py` but presumably without re-writing any files (only handling tags)?

I can take a look, but can you create a reproducer for the issue? Is there a way you could avoid expanding sdists into the git repo to bypass the...

In the past, setuptools had Subversion support built-in. If you had a subversion repo, it presumed you wanted to use the repo to manage your package contents. Setuptools_scm builds on...

Repro: ``` $ pip-run --no-binary :all: wheel Collecting wheel Using cached wheel-0.34.2.tar.gz (58 kB) ERROR: Command errored out with exit status 1: command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0]...

In 4f9d93d, I attempted to declare the dependency on setuptools, but that was insufficient. It seems pip was unable to honor it. ``` $ pip-run --no-binary :all: git+https://github.com/pypa/wheel@bugfix/344-explicit-setuptools Running command...

In cae8be50488b007cbd6c261a86ca478b473631a9, I tried adding `backend-path` so that `wheel` had `wheel`, but that fails with a `BackendInvalid` error: ``` $ pip-run --no-binary :all: git+https://github.com/pypa/wheel@cae8be50488b007cbd6c261a86ca478b473631a9 Collecting git+https://github.com/pypa/wheel@cae8be50488b007cbd6c261a86ca478b473631a9 Cloning https://github.com/pypa/wheel (to revision...

I'm not sure there's anything the wheel project can do here. It seems to be a bootstrapping issue - pip creates an implicit dependency on wheel for every project, including...