-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
351 changed files
with
13,210 additions
and
2,766 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ env: | |
MYPY_CACHE_VERSION: 9 | ||
HA_SHORT_VERSION: "2024.12" | ||
DEFAULT_PYTHON: "3.12" | ||
ALL_PYTHON_VERSIONS: "['3.12']" | ||
ALL_PYTHON_VERSIONS: "['3.12', '3.13']" | ||
# 10.3 is the oldest supported version | ||
# - 10.3.32 is the version currently shipped with Synology (as of 17 Feb 2022) | ||
# 10.6 is the current long-term-support | ||
|
@@ -819,10 +819,6 @@ jobs: | |
needs: | ||
- info | ||
- base | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ${{ fromJson(needs.info.outputs.python_versions) }} | ||
name: Split tests for full run | ||
steps: | ||
- name: Install additional OS dependencies | ||
|
@@ -836,11 +832,11 @@ jobs: | |
libgammu-dev | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
- name: Set up Python ${{ matrix.python-version }} | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
check-latest: true | ||
- name: Restore base Python virtual environment | ||
id: cache-venv | ||
|
@@ -858,7 +854,7 @@ jobs: | |
- name: Upload pytest_buckets | ||
uses: actions/[email protected] | ||
with: | ||
name: pytest_buckets-${{ matrix.python-version }} | ||
name: pytest_buckets | ||
path: pytest_buckets.txt | ||
overwrite: true | ||
|
||
|
@@ -923,7 +919,7 @@ jobs: | |
- name: Download pytest_buckets | ||
uses: actions/[email protected] | ||
with: | ||
name: pytest_buckets-${{ matrix.python-version }} | ||
name: pytest_buckets | ||
- name: Compile English translations | ||
run: | | ||
. venv/bin/activate | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,7 +112,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
abi: ["cp312"] | ||
abi: ["cp312", "cp313"] | ||
arch: ${{ fromJson(needs.init.outputs.architectures) }} | ||
steps: | ||
- name: Checkout the repository | ||
|
@@ -135,14 +135,14 @@ jobs: | |
sed -i "/uv/d" requirements_diff.txt | ||
- name: Build wheels | ||
uses: home-assistant/wheels@2024.07.1 | ||
uses: home-assistant/wheels@2024.11.0 | ||
with: | ||
abi: ${{ matrix.abi }} | ||
tag: musllinux_1_2 | ||
arch: ${{ matrix.arch }} | ||
wheels-key: ${{ secrets.WHEELS_KEY }} | ||
env-file: true | ||
apk: "libffi-dev;openssl-dev;yaml-dev;nasm" | ||
apk: "libffi-dev;openssl-dev;yaml-dev;nasm;zlib-dev" | ||
skip-binary: aiohttp;multidict;yarl | ||
constraints: "homeassistant/package_constraints.txt" | ||
requirements-diff: "requirements_diff.txt" | ||
|
@@ -156,7 +156,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
abi: ["cp312"] | ||
abi: ["cp312", "cp313"] | ||
arch: ${{ fromJson(needs.init.outputs.architectures) }} | ||
steps: | ||
- name: Checkout the repository | ||
|
@@ -198,6 +198,7 @@ jobs: | |
split -l $(expr $(expr $(cat requirements_all.txt | wc -l) + 1) / 3) requirements_all_wheels_${{ matrix.arch }}.txt requirements_all.txt | ||
- name: Create requirements for cython<3 | ||
if: matrix.abi == 'cp312' | ||
run: | | ||
# Some dependencies still require 'cython<3' | ||
# and don't yet use isolated build environments. | ||
|
@@ -208,7 +209,8 @@ jobs: | |
cat homeassistant/package_constraints.txt | grep 'pydantic==' >> requirements_old-cython.txt | ||
- name: Build wheels (old cython) | ||
uses: home-assistant/[email protected] | ||
uses: home-assistant/[email protected] | ||
if: matrix.abi == 'cp312' | ||
with: | ||
abi: ${{ matrix.abi }} | ||
tag: musllinux_1_2 | ||
|
@@ -223,43 +225,43 @@ jobs: | |
pip: "'cython<3'" | ||
|
||
- name: Build wheels (part 1) | ||
uses: home-assistant/wheels@2024.07.1 | ||
uses: home-assistant/wheels@2024.11.0 | ||
with: | ||
abi: ${{ matrix.abi }} | ||
tag: musllinux_1_2 | ||
arch: ${{ matrix.arch }} | ||
wheels-key: ${{ secrets.WHEELS_KEY }} | ||
env-file: true | ||
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm" | ||
skip-binary: aiohttp;charset-normalizer;grpcio;multidict;SQLAlchemy;propcache;protobuf;pydantic;pymicro-vad;yarl | ||
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm;zlib-dev" | ||
skip-binary: aiohttp;charset-normalizer;grpcio;multidict;SQLAlchemy;propcache;protobuf;pymicro-vad;yarl | ||
constraints: "homeassistant/package_constraints.txt" | ||
requirements-diff: "requirements_diff.txt" | ||
requirements: "requirements_all.txtaa" | ||
|
||
- name: Build wheels (part 2) | ||
uses: home-assistant/wheels@2024.07.1 | ||
uses: home-assistant/wheels@2024.11.0 | ||
with: | ||
abi: ${{ matrix.abi }} | ||
tag: musllinux_1_2 | ||
arch: ${{ matrix.arch }} | ||
wheels-key: ${{ secrets.WHEELS_KEY }} | ||
env-file: true | ||
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm" | ||
skip-binary: aiohttp;charset-normalizer;grpcio;multidict;SQLAlchemy;propcache;protobuf;pydantic;pymicro-vad;yarl | ||
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm;zlib-dev" | ||
skip-binary: aiohttp;charset-normalizer;grpcio;multidict;SQLAlchemy;propcache;protobuf;pymicro-vad;yarl | ||
constraints: "homeassistant/package_constraints.txt" | ||
requirements-diff: "requirements_diff.txt" | ||
requirements: "requirements_all.txtab" | ||
|
||
- name: Build wheels (part 3) | ||
uses: home-assistant/wheels@2024.07.1 | ||
uses: home-assistant/wheels@2024.11.0 | ||
with: | ||
abi: ${{ matrix.abi }} | ||
tag: musllinux_1_2 | ||
arch: ${{ matrix.arch }} | ||
wheels-key: ${{ secrets.WHEELS_KEY }} | ||
env-file: true | ||
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm" | ||
skip-binary: aiohttp;charset-normalizer;grpcio;multidict;SQLAlchemy;propcache;protobuf;pydantic;pymicro-vad;yarl | ||
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm;zlib-dev" | ||
skip-binary: aiohttp;charset-normalizer;grpcio;multidict;SQLAlchemy;propcache;protobuf;pymicro-vad;yarl | ||
constraints: "homeassistant/package_constraints.txt" | ||
requirements-diff: "requirements_diff.txt" | ||
requirements: "requirements_all.txtac" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"services": { | ||
"beolink_join": { "service": "mdi:location-enter" }, | ||
"beolink_expand": { "service": "mdi:location-enter" }, | ||
"beolink_unexpand": { "service": "mdi:location-exit" }, | ||
"beolink_leave": { "service": "mdi:close-circle-outline" }, | ||
"beolink_allstandby": { "service": "mdi:close-circle-multiple-outline" } | ||
} | ||
} |
Oops, something went wrong.