mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Add additional package version range checks (#146299)
* Add additional package version range checks * Add exception for scipy
This commit is contained in:
parent
7573a74cb0
commit
2842f55460
@ -30,6 +30,9 @@ PACKAGE_CHECK_VERSION_RANGE = {
|
|||||||
"grpcio": "SemVer",
|
"grpcio": "SemVer",
|
||||||
"httpx": "SemVer",
|
"httpx": "SemVer",
|
||||||
"mashumaro": "SemVer",
|
"mashumaro": "SemVer",
|
||||||
|
"numpy": "SemVer",
|
||||||
|
"pandas": "SemVer",
|
||||||
|
"pillow": "SemVer",
|
||||||
"pydantic": "SemVer",
|
"pydantic": "SemVer",
|
||||||
"pyjwt": "SemVer",
|
"pyjwt": "SemVer",
|
||||||
"pytz": "CalVer",
|
"pytz": "CalVer",
|
||||||
@ -41,6 +44,11 @@ PACKAGE_CHECK_VERSION_RANGE_EXCEPTIONS: dict[str, dict[str, set[str]]] = {
|
|||||||
# - domain is the integration domain
|
# - domain is the integration domain
|
||||||
# - package is the package (can be transitive) referencing the dependency
|
# - package is the package (can be transitive) referencing the dependency
|
||||||
# - dependencyX should be the name of the referenced dependency
|
# - dependencyX should be the name of the referenced dependency
|
||||||
|
"geocaching": {
|
||||||
|
# scipy version closely linked to numpy
|
||||||
|
# geocachingapi > reverse_geocode > scipy > numpy
|
||||||
|
"scipy": {"numpy"}
|
||||||
|
},
|
||||||
"mealie": {
|
"mealie": {
|
||||||
# https://github.com/joostlek/python-mealie/pull/490
|
# https://github.com/joostlek/python-mealie/pull/490
|
||||||
"aiomealie": {"awesomeversion"}
|
"aiomealie": {"awesomeversion"}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user