mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 01:21:51 +02:00
Add additional package version range checks (#146299)
* Add additional package version range checks * Add exception for scipy
This commit is contained in:
@ -30,6 +30,9 @@ PACKAGE_CHECK_VERSION_RANGE = {
|
||||
"grpcio": "SemVer",
|
||||
"httpx": "SemVer",
|
||||
"mashumaro": "SemVer",
|
||||
"numpy": "SemVer",
|
||||
"pandas": "SemVer",
|
||||
"pillow": "SemVer",
|
||||
"pydantic": "SemVer",
|
||||
"pyjwt": "SemVer",
|
||||
"pytz": "CalVer",
|
||||
@ -41,6 +44,11 @@ PACKAGE_CHECK_VERSION_RANGE_EXCEPTIONS: dict[str, dict[str, set[str]]] = {
|
||||
# - domain is the integration domain
|
||||
# - package is the package (can be transitive) referencing the 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": {
|
||||
# https://github.com/joostlek/python-mealie/pull/490
|
||||
"aiomealie": {"awesomeversion"}
|
||||
|
Reference in New Issue
Block a user