Skip to content

Commit

Permalink
Bump to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
briis committed Jan 4, 2024
1 parent b079bc7 commit 7239e45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion async_test_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def main() -> None:
print("TEMPERATURE: ", data.temperature)
print("***** DAILY DATA *****")
for item in data.forecast_daily:
print(item.temperature, item.temp_low, item.icon, item.condition, item.precipitation_probability, item.precipitation, item.wind_bearing, item.wind_speed)
print(item.temperature, item.temp_low, item.icon, item.condition, item.precipitation_probability, item.precipitation, item.wind_bearing, item.wind_speed, item.wind_gust)
print("***** HOURLY DATA *****")
for item in data.forecast_hourly:
print(item.datetime, item.temperature, item.apparent_temperature, item.icon, item.condition, item.precipitation, item.precipitation_probability)
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ set -e
cd "$(dirname "$0")/.."

ruff check . --fix
mypy pyweatherflow_forecast
# mypy pyweatherflow_forecast

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="pyweatherflow-forecast",
version="1.0.2",
version="1.0.3",
author="briis",
author_email="bjarne@briis.com",
description="Gets the weather forecast data from WeatherFlow",
Expand Down

0 comments on commit 7239e45

Please # to comment.