bump georss_client to 0.5 (#19337)

This commit is contained in:
Malte Franken 2018-12-16 21:14:36 +11:00 committed by Fabian Affolter
parent c545d2e22e
commit 629dd24ff3
4 changed files with 3 additions and 9 deletions

View File

@ -20,7 +20,7 @@ from homeassistant.const import (
CONF_LATITUDE, CONF_LONGITUDE, CONF_RADIUS, CONF_URL)
from homeassistant.helpers.entity import Entity
REQUIREMENTS = ['georss_client==0.4']
REQUIREMENTS = ['georss_client==0.5']
_LOGGER = logging.getLogger(__name__)

View File

@ -427,7 +427,7 @@ geizhals==0.0.9
geojson_client==0.3
# homeassistant.components.sensor.geo_rss_events
georss_client==0.4
georss_client==0.5
# homeassistant.components.device_tracker.googlehome
ghlocalapi==0.3.5

View File

@ -83,7 +83,7 @@ gTTS-token==1.1.3
geojson_client==0.3
# homeassistant.components.sensor.geo_rss_events
georss_client==0.4
georss_client==0.5
# homeassistant.components.ffmpeg
ha-ffmpeg==1.9

View File

@ -1,11 +1,8 @@
"""The test for the geo rss events sensor platform."""
import unittest
from unittest import mock
import sys
from unittest.mock import MagicMock, patch
import pytest
from homeassistant.components import sensor
from homeassistant.const import ATTR_UNIT_OF_MEASUREMENT, ATTR_FRIENDLY_NAME, \
EVENT_HOMEASSISTANT_START, ATTR_ICON
@ -37,9 +34,6 @@ VALID_CONFIG = {
}
# Until https://github.com/kurtmckee/feedparser/pull/131 is released.
@pytest.mark.skipif(sys.version_info[:2] >= (3, 7),
reason='Package incompatible with Python 3.7')
class TestGeoRssServiceUpdater(unittest.TestCase):
"""Test the GeoRss service updater."""