Upgrade ephem to 3.7.7.0 (#28715)

This commit is contained in:
Fabian Affolter 2019-11-14 12:01:53 +01:00 committed by cgtobi
parent 08d662c0a5
commit c6d6bbf3e0
4 changed files with 12 additions and 8 deletions

View File

@ -3,7 +3,7 @@
"name": "Season",
"documentation": "https://www.home-assistant.io/integrations/season",
"requirements": [
"ephem==3.7.6.0"
"ephem==3.7.7.0"
],
"dependencies": [],
"codeowners": []

View File

@ -1,27 +1,31 @@
"""Support for tracking which astronomical or meteorological season it is."""
import logging
from datetime import datetime
import logging
import ephem
import voluptuous as vol
from homeassistant import util
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import CONF_TYPE
from homeassistant.helpers.entity import Entity
from homeassistant import util
import homeassistant.util.dt as dt_util
_LOGGER = logging.getLogger(__name__)
NORTHERN = "northern"
SOUTHERN = "southern"
EQUATOR = "equator"
NORTHERN = "northern"
SOUTHERN = "southern"
STATE_AUTUMN = "autumn"
STATE_SPRING = "spring"
STATE_SUMMER = "summer"
STATE_AUTUMN = "autumn"
STATE_WINTER = "winter"
TYPE_ASTRONOMICAL = "astronomical"
TYPE_METEOROLOGICAL = "meteorological"
VALID_TYPES = [TYPE_ASTRONOMICAL, TYPE_METEOROLOGICAL]
HEMISPHERE_SEASON_SWAP = {

View File

@ -474,7 +474,7 @@ env_canada==0.0.30
envoy_reader==0.8.6
# homeassistant.components.season
ephem==3.7.6.0
ephem==3.7.7.0
# homeassistant.components.epson
epson-projector==0.1.3

View File

@ -155,7 +155,7 @@ eebrightbox==0.0.4
emulated_roku==0.1.8
# homeassistant.components.season
ephem==3.7.6.0
ephem==3.7.7.0
# homeassistant.components.feedreader
feedparser-homeassistant==5.2.2.dev1