Browse Source

Try to exclude the requirements_all to make HA smaller and install deps OD

Joachim M. Giæver 10 months ago
parent
commit
74dcd337a8
1 changed files with 2 additions and 5 deletions
  1. 2 5
      snap/snapcraft.yaml

+ 2 - 5
snap/snapcraft.yaml

@@ -238,16 +238,13 @@ parts:
       - -lib/python3.11/site-packages/icalendar
     requirements:
       - requirements.txt
-      - requirements_all.txt
+      #- requirements_all.txt
     constraints:
       - homeassistant/package_constraints.txt
     override-build: |
       CWD="$(pwd)"
-      cd "${SNAPCRAFT_PART_BUILD}"
-      python3 -m script.translations develop --all
-      cd "${CWD}"
+      cd "${SNAPCRAFT_PART_BUILD}" && python3 -m script.translations develop --all && cd "${CWD}"
       snapcraftctl build
-      
     override-stage: |
       snapcraftctl stage
       find $SNAPCRAFT_STAGE/bin -type f -executable -exec sed -i 's/!\/usr\/bin\/env python3.11/!\/usr\/bin\/env python3/' {} \;