diff --git a/darksky/forecast.py b/darksky/forecast.py index d085e3b..cf11939 100644 --- a/darksky/forecast.py +++ b/darksky/forecast.py @@ -16,6 +16,7 @@ class CurrentlyForecast(base.AutoInit): precip_intensity_error: float precip_probability: float precip_type: str + precipAccumulation: float temperature: float apparent_temperature: float dew_point: float @@ -50,6 +51,7 @@ class HourlyForecastItem(base.AutoInit): precip_intensity: float precip_probability: float precip_type: str + precipAccumulation: float temperature: float apparent_temperature: float dew_point: float @@ -81,6 +83,7 @@ class DailyForecastItem(base.AutoInit): precip_intensity_max_time: datetime precip_probability: float precip_type: str + precipAccumulation: float temperature_high: float temperature_high_time: datetime temperature_low: float diff --git a/setup.py b/setup.py index 7cb7fd6..0d20a9e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -__version__ = "1.6.2" +__version__ = "1.6.3" with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")) as f: @@ -19,8 +19,7 @@ author="Detrous", author_email="detrous@protonmail.com", url="https://github.com/Detrous/darksky", - download_url="https://github.com/Detrous/darksky/archive/%s.tar.gz" - % __version__, + download_url="https://github.com/Detrous/darksky/archive/%s.tar.gz" % __version__, license="GPLv3 License", classifiers=[ "Environment :: Web Environment",