-
Notifications
You must be signed in to change notification settings - Fork 389
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
Installation on Python 3.4.0 is failing #342
Comments
Hey @5j9, can you please confirm is I'm facing the same issue via the trace below? _`Installing vcrpy… Adding vcrpy to Pipfile's [dev-packages]… During handling of the above exception, another exception occurred: Traceback (most recent call last): /usr/local/lib/python2.7/dist-packages/pipenv/utils.py:1162: ResourceWarning: Implicitly cleaning up <TemporaryDirectory '/tmp/pipenv-QGgfm3-requirements'> |
@rosygupta, |
@5j9 That doesn't help. Says already upto date. |
Almost :) It seems that there has been a similar issue in pipenv which has been resolved recently. Could try updating pipenv, too? |
@5j9 tried that as well. I setup the whole thing on a new system with no old installs. facing the same issue. I basically tried installing vcrpy in this repo: https://github.com/OpenHumans/oh-proj-management after setting up the repo as suggested in the |
I'm also hitting exact same issue as @rosygupta :| seems like a weird issue between
$ pipenv --version
pipenv, version 11.8.3
$ python --version
Python 3.5.3 |
I am running into exactly the same issue as @rosygupta too. My guess is that this definitely has something to do with how
Just to be sure, I uninstalled the Python 3.5.x that I had and installed 3.6.4 and updated |
Related: #393 |
For the issues related with pipenv locking, I think it is a pipenv issue, which is fixed in the recent PRs (probably released), instead of issue in this repo. Try the latest pipenv version. |
https://ci.appveyor.com/project/5j9/pywikibot-core/build/1.0.76/job/tls8y6s73onoi0yf#L139
This is because multidict v4.0.0 has dropped support for python_version<3.4.1. And yarl v1.0.0 only supports multidict>=4.0.
So,
vcrpy
should probably addmultidict<4.0.0,>=2.0
andyarl<1.0.0
to itsPython==3.4.0
requirements.The text was updated successfully, but these errors were encountered: