Skip to content
This repository has been archived by the owner on May 20, 2021. It is now read-only.

Commit

Permalink
precipAccumulation field (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Detrous authored Dec 20, 2019
1 parent 4e44eb9 commit ce2adc8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions darksky/forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -19,8 +19,7 @@
author="Detrous",
author_email="[email protected]",
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",
Expand Down

0 comments on commit ce2adc8

Please sign in to comment.