Matt Davis

Results 600 comments of Matt Davis

Is there a suitable test case for this on python3.7 or greater, or anyone know if this is still an issue?

@huxuan This feels like a duplicate request of https://github.com/pypa/pipenv/issues/3920 Edit: Ok well similar but different, since that request wants to support a variable that defaults to something within the Pipfile...

@huxuan I believe with the completion of Index Restricted Packages that this ticket should be resolved. Please see the updated documentation around specifying package indexes: https://pipenv.pypa.io/en/latest/advanced/#specifying-package-indexes Feel free to comment...

I perhaps misunderstood this issue prior, or well it at least relates to a PR I started working on: https://github.com/pypa/pipenv/pull/5297

@DragonRulerX What is in your `Pipfile` -- I suspect both discord entires are somehow in there and so that is why the lock regenerates this way -- I just tried...

The only reasonable workaround at this time would be to specify in your `Pipfile` the transitive dependency and relevant marker(s). For example: `appnope = {version = "*", markers="sys_platform == 'darwin'"}`...

I think this will be supported better by two things: 1.) Category based package groups -- this is in progress with #4745 2.) Transitive dependencies for other platforms than the...

@kumarkeshav021 It looks like one of your setup.py depends on `click` and so it has to be installed ahead of the other install. This is similar to #5344 #5332 #5319

Named package categories feature has been released and, so now it should be possible to `pipenv install click --categories=prereq` and then change your install phase to something like `pipenv install...