Fix dirhash failing to import pkg_resources (#4817)

This commit is contained in:
J. Nick Koston 2024-01-14 00:20:35 -10:00 committed by GitHub
parent 7101d47e2e
commit 9c625f93a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,7 @@ jobs:
- name: Install dirhash and calc hash - name: Install dirhash and calc hash
if: needs.init.outputs.publish == 'true' if: needs.init.outputs.publish == 'true'
run: | run: |
pip3 install dirhash pip3 install setuptools dirhash
dir_hash="$(dirhash "${{ github.workspace }}/supervisor" -a sha256 --match "*.py")" dir_hash="$(dirhash "${{ github.workspace }}/supervisor" -a sha256 --match "*.py")"
echo "${dir_hash}" > rootfs/supervisor.sha256 echo "${dir_hash}" > rootfs/supervisor.sha256

View File

@ -23,6 +23,7 @@ pyudev==0.24.1
PyYAML==6.0.1 PyYAML==6.0.1
securetar==2023.12.0 securetar==2023.12.0
sentry-sdk==1.39.2 sentry-sdk==1.39.2
setuptools==69.0.3
voluptuous==0.14.1 voluptuous==0.14.1
dbus-fast==2.21.0 dbus-fast==2.21.0
typing_extensions==4.9.0 typing_extensions==4.9.0