-
-
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
Refactor and cleanup some locking code #2315
Conversation
'log_string': 'packages', | ||
'dev': False | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will make the section ordering non-deterministic in older Python versions. Probably better to use a list instead. (Or the user could be confused.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
pipenv/core.py
Outdated
continue | ||
lockfile['default'].update( | ||
{dep['name']: {'version': '=={0}'.format(dep['version'])}} | ||
# Add develop dependencies to lockfile. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stale comment?
That resolver failure is so consistent on appveyor now, I wonder what the real cause of it is... |
- This has been driving me mad. Signed-off-by: Dan Ryan <[email protected]>
Signed-off-by: Dan Ryan <[email protected]>
Signed-off-by: Dan Ryan <[email protected]>
Signed-off-by: Dan Ryan <[email protected]>
- Cleanup stale comments - Deterministic ordering for locking Signed-off-by: Dan Ryan <[email protected]>
6d9ec90
to
be75afb
Compare
Signed-off-by: Dan Ryan [email protected]