-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2018.11.14 pipenv commands fail with pyenv #3224
Comments
omg, unreal. Pyenv is causing me nothing but headaches |
Workaround: set a global pyenv version with |
does not help at all. here is my output:
|
Hi @xsteadfastx Or you can delete |
thanks this worked as a workaround 👍 |
Same issue running Ubuntu 12.04 (don't ask) Downgrading to pipenv 2018.7.1 fixed the issue (was our last known working version). It appears the issue is |
Yes we are aware. If you run the command as described it will exist with valid data and you will have a workaround. We have a fix already set, and a workaround is provided above |
This issue is not fixed. I am unable to run builds on Travis: https://travis-ci.org/clintonb/cookiecutter-django/builds/456875078. They fail when I try to run |
@clintonb It is because it is fixed in master branch, but not released yet. |
I am running with the version from master. Looking at the PR that closed
this issue, all that was done was the addition of an if statement. Given
that the issue lies with a function returning `None` instead of an
iterable, that fix won’t work.
--
Clinton
|
Thanks @jxltom and @techalchemy! I have confirmed |
This is still failing for me on a fresh install. |
can you clarify "fresh install" -- we haven't released a fix yet, it is only fixed on the master branch. |
I installed using the get-pipenv.py checked into master. Will this not install the latest version? |
ah I'm sure that installs the pypi version, I'll be cutting a release shortly |
I had used this command
to installed the fixed master found in github to my |
@techalchemy I realize it's a holiday weekend and am not pressuring you -- I just wanted to ask if you ran into any trouble cutting a release or if you just didn't get around to it. Thanks! |
Release is up |
Issue description
We use pyenv to support multiple Python versions on one machine.
When using any command with pipenv (version 2018.11.14) it fails with the below traceback.
Expected result
pipenv should execute the commands without errors.
Actual result
Steps to replicate
Install pyenv as described in the README on https://github.com/pyenv/pyenv. Install a Python version of your choice using pyenv, e.g.
pyenv install 3.7.0
. When in your project create aPipfile
and add/change the following section:Now run any pipenv command in your project, .e.g
pipenv install
orpipenv shell
.Thanks for looking into it.
The text was updated successfully, but these errors were encountered: