Matt Davis

Results 643 comments of Matt Davis

I've tried adding a .env file with `PIPENV_VENV_IN_PROJECT=1` and it does not get used when creating the virtualenv on the master branch. Perhaps we can move the dotenv loading earlier...

@epomatti Any interest in working on a prototype PR of this?

@rwong2888 That looks to be that you have a version of Crpyto installed that is not python 3.7 compatible with syntax. This is not something vendored by pipenv, which is...

@rwong2888 Not sure right off -- the new version upgraded major versions of pip to the latest. What version of pip do you have installed? Perhaps you need to upgrade...

There are some separate issue reports about the `--system` flag you might want to look for. I will mark this as triage for someone to look into more.

@rwong2888 -- I find it interested that `Crypto` is not even listed in your `Pipfile.lock`

> FROM python3.7 > > ... > > RUN pip install --upgrade pip && \ > pip install pipenv && \ > pipenv install --system --deploy I tried running this...

@rwong2888 Just noticed that your python image is 3.7 and your pipfile is requiring python3.8.

@rwong2888 If you run your Docker build with `docker build --progress=plain .` do you get any additional insights in the output?

@rwong2888 This Dockerfile builds and it uses your Pipfile but comments out the one dependency that is local to your vendor directory. There was an error being throw on install...