mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 18:28:14 +02:00
Bump electrickiwi-api to 0.9.13 (#137601)
* bump ek api version to fix deps
* Revert "Skip building wheels for electrickiwi-api (#137556)"
This reverts commit 5f6068eea4
.
---------
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
This commit is contained in:
@ -50,12 +50,6 @@ INCLUDED_REQUIREMENTS_WHEELS = {
|
||||
"pyuserinput",
|
||||
}
|
||||
|
||||
EXCLUDED_REQUIREMENTS_WHEELS = {
|
||||
# Exclude 'electrickiwi-api' temporarily, until <3.13 pin is removed upstream.
|
||||
# https://github.com/mikey0000/EK-API/pull/1
|
||||
"electrickiwi-api",
|
||||
}
|
||||
|
||||
|
||||
# Requirements to exclude or include when running github actions.
|
||||
# Requirements listed in "exclude" will be commented-out in
|
||||
@ -70,7 +64,7 @@ OVERRIDDEN_REQUIREMENTS_ACTIONS = {
|
||||
"markers": {},
|
||||
},
|
||||
"wheels_aarch64": {
|
||||
"exclude": EXCLUDED_REQUIREMENTS_WHEELS,
|
||||
"exclude": set(),
|
||||
"include": INCLUDED_REQUIREMENTS_WHEELS,
|
||||
"markers": {},
|
||||
},
|
||||
@ -79,23 +73,22 @@ OVERRIDDEN_REQUIREMENTS_ACTIONS = {
|
||||
# "flimsy" on 386). The following packages depend on pandas,
|
||||
# so we comment them out.
|
||||
"wheels_armhf": {
|
||||
"exclude": EXCLUDED_REQUIREMENTS_WHEELS
|
||||
| {"env-canada", "noaa-coops", "pyezviz", "pykrakenapi"},
|
||||
"exclude": {"env-canada", "noaa-coops", "pyezviz", "pykrakenapi"},
|
||||
"include": INCLUDED_REQUIREMENTS_WHEELS,
|
||||
"markers": {},
|
||||
},
|
||||
"wheels_armv7": {
|
||||
"exclude": EXCLUDED_REQUIREMENTS_WHEELS,
|
||||
"exclude": set(),
|
||||
"include": INCLUDED_REQUIREMENTS_WHEELS,
|
||||
"markers": {},
|
||||
},
|
||||
"wheels_amd64": {
|
||||
"exclude": EXCLUDED_REQUIREMENTS_WHEELS,
|
||||
"exclude": set(),
|
||||
"include": INCLUDED_REQUIREMENTS_WHEELS,
|
||||
"markers": {},
|
||||
},
|
||||
"wheels_i386": {
|
||||
"exclude": EXCLUDED_REQUIREMENTS_WHEELS,
|
||||
"exclude": set(),
|
||||
"include": INCLUDED_REQUIREMENTS_WHEELS,
|
||||
"markers": {},
|
||||
},
|
||||
|
Reference in New Issue
Block a user