-
Notifications
You must be signed in to change notification settings - Fork 293
Missing hash for setuptools? #85
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
Comments
As a workaround I use the option I added in #86 to stop this plugin from using my pipenv and manually freeze the requirements using |
Another project today and the same problem with a package requiring
|
I'm having the exact same issue with a very similar scenario as you. Looks like in my case its |
I checked this again hoping that the new pipenv that fixed #87 also fixed this. Unfortunately still an issue :( |
Bummer. I didn't ask before, are you using the |
Nope, I'm not using
I think the problem is with either |
Hmm. we might want to file an issue against pipenv then. |
Yeah, I hope to get some time to dig into the issue from the pipenv side of things soon* |
I was wondering, if anyone had any time to look at this? I am also having this issue in some of my projects. |
Confirm getting similar issue with the following generated
and after putting this to
seems like transitive dependencies are not present in however |
@Tethik or @mlosev could one of you share your |
This is mine:
|
My
I found related issue in |
Thanks guys! and thanks for finding that issue in pipenv @mlosev. |
Unsure how closely it's related, but a recent reference to that issue was labeled as a bug a few days ago: pypa/pipenv#1380 Anyway, it looks like I'm going to need to go the route of disabling pipenv. |
Thanks for pointing that out. I'll keep an eye on it. |
@dfee that issue was closed 3days ago and is in |
For anyone else hitting this, if your using an older pipenv, I had to run |
Issue was fixed upstream. |
Not sure where this issue belongs, but maybe someone here has a solution.
I have a serverless project using pipenv. One of the requirements (
jira
) includessetuptools
as a dependency. When trying to runserverless deploy
with this plugin I get the following error:Pipenv generates a requirements.txt with hashes, however it seems that the hash for setuptools is missing or not working. The following command does not work.
However the following works (setuptools is already installed in a fresh virtualenv).
So my guess is that the issue is either with pipenv (generating a faulty requirements.txt), pip or jira.
This is what my generated requirements.txt looks like:
The text was updated successfully, but these errors were encountered: