git deploy: use python requirements file for updates

The package parsing only serves the purpose of performing the diff.

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-06-24 14:10:44 -04:00
parent 1cfeb853a5
commit 1d3e5564a2
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ class GitDeploy(AppDeploy):
if packages:
await self._install_packages(packages)
if modules:
await self._update_python_requirements(modules)
await self._update_python_requirements(self.python_reqs or modules)
npm_hash: Optional[str] = dep_info["npm_hash"]
ret = await self._check_need_update(npm_hash, self.npm_pkg_json)
if force or ret: