mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Possible fix for the meta data not getting updated in the lock phase.
This commit is contained in:
@@ -1138,6 +1138,7 @@ def do_lock(
|
||||
overwrite_with_default(lockfile.get("default", {}), lockfile[category])
|
||||
)
|
||||
if write:
|
||||
lockfile.update({"_meta": project.get_lockfile_meta()})
|
||||
project.write_lockfile(lockfile)
|
||||
click.echo(
|
||||
"{}".format(
|
||||
|
||||
@@ -582,8 +582,6 @@ class Project:
|
||||
)
|
||||
lockfile = lockfile._data
|
||||
|
||||
# with open(self.pipfile_location) as pf:
|
||||
# lockfile = plette.Lockfile.with_meta_from(plette.Pipfile.load(pf))
|
||||
if categories is None:
|
||||
categories = self.get_package_categories(for_lockfile=True)
|
||||
for category in categories:
|
||||
|
||||
Reference in New Issue
Block a user