mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 02:07:54 +00:00
Update build system (#95237)
This commit is contained in:
parent
1525901ffc
commit
f5975d4039
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
@ -492,10 +492,10 @@ jobs:
|
|||||||
python -m venv venv
|
python -m venv venv
|
||||||
. venv/bin/activate
|
. venv/bin/activate
|
||||||
python --version
|
python --version
|
||||||
pip install --cache-dir=$PIP_CACHE -U "pip>=21.0,<23.2" setuptools wheel
|
pip install --cache-dir=$PIP_CACHE -U "pip>=21.3.1,<23.2" setuptools wheel
|
||||||
pip install --cache-dir=$PIP_CACHE -r requirements_all.txt
|
pip install --cache-dir=$PIP_CACHE -r requirements_all.txt
|
||||||
pip install --cache-dir=$PIP_CACHE -r requirements_test.txt
|
pip install --cache-dir=$PIP_CACHE -r requirements_test.txt
|
||||||
pip install -e .
|
pip install .
|
||||||
|
|
||||||
hassfest:
|
hassfest:
|
||||||
name: Check hassfest
|
name: Check hassfest
|
||||||
|
@ -33,7 +33,7 @@ mutagen==1.46.0
|
|||||||
orjson==3.9.1
|
orjson==3.9.1
|
||||||
paho-mqtt==1.6.1
|
paho-mqtt==1.6.1
|
||||||
Pillow==9.5.0
|
Pillow==9.5.0
|
||||||
pip>=21.0,<23.2
|
pip>=21.3.1,<23.2
|
||||||
psutil-home-assistant==0.0.1
|
psutil-home-assistant==0.0.1
|
||||||
PyJWT==2.7.0
|
PyJWT==2.7.0
|
||||||
PyNaCl==1.5.0
|
PyNaCl==1.5.0
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools~=62.3", "wheel~=0.37.1"]
|
requires = ["setuptools~=68.0", "wheel~=0.40.0"]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
@ -19,6 +19,7 @@ classifiers = [
|
|||||||
"License :: OSI Approved :: Apache Software License",
|
"License :: OSI Approved :: Apache Software License",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
|
"Programming Language :: Python :: 3.11",
|
||||||
"Topic :: Home Automation",
|
"Topic :: Home Automation",
|
||||||
]
|
]
|
||||||
requires-python = ">=3.10.0"
|
requires-python = ">=3.10.0"
|
||||||
@ -45,7 +46,7 @@ dependencies = [
|
|||||||
# pyOpenSSL 23.2.0 is required to work with cryptography 41+
|
# pyOpenSSL 23.2.0 is required to work with cryptography 41+
|
||||||
"pyOpenSSL==23.2.0",
|
"pyOpenSSL==23.2.0",
|
||||||
"orjson==3.9.1",
|
"orjson==3.9.1",
|
||||||
"pip>=21.0,<23.2",
|
"pip>=21.3.1,<23.2",
|
||||||
"python-slugify==4.0.1",
|
"python-slugify==4.0.1",
|
||||||
"PyYAML==6.0",
|
"PyYAML==6.0",
|
||||||
"requests==2.31.0",
|
"requests==2.31.0",
|
||||||
@ -57,6 +58,7 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
"Homepage" = "https://www.home-assistant.io/"
|
||||||
"Source Code" = "https://github.com/home-assistant/core"
|
"Source Code" = "https://github.com/home-assistant/core"
|
||||||
"Bug Reports" = "https://github.com/home-assistant/core/issues"
|
"Bug Reports" = "https://github.com/home-assistant/core/issues"
|
||||||
"Docs: Dev" = "https://developers.home-assistant.io/"
|
"Docs: Dev" = "https://developers.home-assistant.io/"
|
||||||
|
@ -19,7 +19,7 @@ PyJWT==2.7.0
|
|||||||
cryptography==41.0.1
|
cryptography==41.0.1
|
||||||
pyOpenSSL==23.2.0
|
pyOpenSSL==23.2.0
|
||||||
orjson==3.9.1
|
orjson==3.9.1
|
||||||
pip>=21.0,<23.2
|
pip>=21.3.1,<23.2
|
||||||
python-slugify==4.0.1
|
python-slugify==4.0.1
|
||||||
PyYAML==6.0
|
PyYAML==6.0
|
||||||
requests==2.31.0
|
requests==2.31.0
|
||||||
|
@ -24,7 +24,7 @@ fi
|
|||||||
script/bootstrap
|
script/bootstrap
|
||||||
|
|
||||||
pre-commit install
|
pre-commit install
|
||||||
python3 -m pip install -e . --constraint homeassistant/package_constraints.txt
|
python3 -m pip install -e . --config-settings editable_mode=compat --constraint homeassistant/package_constraints.txt
|
||||||
python3 -m script.translations develop --all
|
python3 -m script.translations develop --all
|
||||||
|
|
||||||
hass --script ensure_config -c config
|
hass --script ensure_config -c config
|
||||||
|
Loading…
x
Reference in New Issue
Block a user