Re: [PATCH v4 08/24] python: Add pipenv support

2021-02-17 Thread Cleber Rosa
On Wed, Feb 17, 2021 at 12:28:22PM -0500, John Snow wrote: > On 2/16/21 10:02 PM, Cleber Rosa wrote: > > On Tue, Feb 16, 2021 at 09:59:47PM -0500, Cleber Rosa wrote: > > > On Thu, Feb 11, 2021 at 01:58:40PM -0500, John Snow wrote: > > > > pipenv is a tool used for managing virtual environments with

Re: [PATCH v4 08/24] python: Add pipenv support

2021-02-17 Thread John Snow
On 2/16/21 10:02 PM, Cleber Rosa wrote: On Tue, Feb 16, 2021 at 09:59:47PM -0500, Cleber Rosa wrote: On Thu, Feb 11, 2021 at 01:58:40PM -0500, John Snow wrote: pipenv is a tool used for managing virtual environments with pinned, explicit dependencies. It is used for precisely recreating python

Re: [PATCH v4 08/24] python: Add pipenv support

2021-02-16 Thread John Snow
On 2/16/21 9:59 PM, Cleber Rosa wrote: On Thu, Feb 11, 2021 at 01:58:40PM -0500, John Snow wrote: pipenv is a tool used for managing virtual environments with pinned, explicit dependencies. It is used for precisely recreating python virtual environments. pipenv uses two files to do this: (1) P

Re: [PATCH v4 08/24] python: Add pipenv support

2021-02-16 Thread Cleber Rosa
On Tue, Feb 16, 2021 at 09:59:47PM -0500, Cleber Rosa wrote: > On Thu, Feb 11, 2021 at 01:58:40PM -0500, John Snow wrote: > > pipenv is a tool used for managing virtual environments with pinned, > > explicit dependencies. It is used for precisely recreating python > > virtual environments. > > > >

Re: [PATCH v4 08/24] python: Add pipenv support

2021-02-16 Thread Cleber Rosa
On Thu, Feb 11, 2021 at 01:58:40PM -0500, John Snow wrote: > pipenv is a tool used for managing virtual environments with pinned, > explicit dependencies. It is used for precisely recreating python > virtual environments. > > pipenv uses two files to do this: > > (1) Pipfile, which is similar in

[PATCH v4 08/24] python: Add pipenv support

2021-02-11 Thread John Snow
pipenv is a tool used for managing virtual environments with pinned, explicit dependencies. It is used for precisely recreating python virtual environments. pipenv uses two files to do this: (1) Pipfile, which is similar in purpose and scope to what setup.py lists. It specifies the requisite mini