Bump version to 2025.5.0dev0 (#141507)

This commit is contained in:
Franck Nijhof 2025-03-26 20:30:03 +01:00 committed by GitHub
parent 930b4a2c81
commit eb901bcf3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 716 additions and 725 deletions

View File

@ -40,7 +40,7 @@ env:
CACHE_VERSION: 12 CACHE_VERSION: 12
UV_CACHE_VERSION: 1 UV_CACHE_VERSION: 1
MYPY_CACHE_VERSION: 9 MYPY_CACHE_VERSION: 9
HA_SHORT_VERSION: "2025.4" HA_SHORT_VERSION: "2025.5"
DEFAULT_PYTHON: "3.13" DEFAULT_PYTHON: "3.13"
ALL_PYTHON_VERSIONS: "['3.13']" ALL_PYTHON_VERSIONS: "['3.13']"
# 10.3 is the oldest supported version # 10.3 is the oldest supported version

View File

@ -24,7 +24,7 @@ if TYPE_CHECKING:
APPLICATION_NAME: Final = "HomeAssistant" APPLICATION_NAME: Final = "HomeAssistant"
MAJOR_VERSION: Final = 2025 MAJOR_VERSION: Final = 2025
MINOR_VERSION: Final = 4 MINOR_VERSION: Final = 5
PATCH_VERSION: Final = "0.dev0" PATCH_VERSION: Final = "0.dev0"
__short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}" __short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__: Final = f"{__short_version__}.{PATCH_VERSION}" __version__: Final = f"{__short_version__}.{PATCH_VERSION}"

View File

@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "homeassistant" name = "homeassistant"
version = "2025.4.0.dev0" version = "2025.5.0.dev0"
license = "Apache-2.0" license = "Apache-2.0"
license-files = ["LICENSE*", "homeassistant/backports/LICENSE*"] license-files = ["LICENSE*", "homeassistant/backports/LICENSE*"]
description = "Open-source home automation platform running on Python 3." description = "Open-source home automation platform running on Python 3."
readme = "README.rst" readme = "README.rst"
authors = [ authors = [
{name = "The Home Assistant Authors", email = "hello@home-assistant.io"} { name = "The Home Assistant Authors", email = "hello@home-assistant.io" },
] ]
keywords = ["home", "automation"] keywords = ["home", "automation"]
classifiers = [ classifiers = [
@ -83,7 +83,7 @@ dependencies = [
"voluptuous-openapi==0.0.6", "voluptuous-openapi==0.0.6",
"yarl==1.18.3", "yarl==1.18.3",
"webrtc-models==0.3.0", "webrtc-models==0.3.0",
"zeroconf==0.146.0" "zeroconf==0.146.0",
] ]
[project.urls] [project.urls]
@ -140,9 +140,7 @@ extension-pkg-allow-list = [
"orjson", "orjson",
"cv2", "cv2",
] ]
fail-on = [ fail-on = ["I"]
"I",
]
[tool.pylint.BASIC] [tool.pylint.BASIC]
class-const-naming-style = "any" class-const-naming-style = "any"
@ -446,13 +444,8 @@ runtime-typing = false
max-line-length-suggestions = 72 max-line-length-suggestions = 72
[tool.pytest.ini_options] [tool.pytest.ini_options]
testpaths = [ testpaths = ["tests"]
"tests", norecursedirs = [".git", "testing_config"]
]
norecursedirs = [
".git",
"testing_config",
]
log_format = "%(asctime)s.%(msecs)03d %(levelname)-8s %(threadName)s %(name)s:%(filename)s:%(lineno)s %(message)s" log_format = "%(asctime)s.%(msecs)03d %(levelname)-8s %(threadName)s %(name)s:%(filename)s:%(lineno)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S" log_date_format = "%Y-%m-%d %H:%M:%S"
asyncio_mode = "auto" asyncio_mode = "auto"
@ -932,9 +925,7 @@ mark-parentheses = false
[tool.ruff.lint.isort] [tool.ruff.lint.isort]
force-sort-within-sections = true force-sort-within-sections = true
known-first-party = [ known-first-party = ["homeassistant"]
"homeassistant",
]
combine-as-imports = true combine-as-imports = true
split-on-trailing-comma = false split-on-trailing-comma = false