Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
FL550 committed Sep 18, 2024
1 parent 5cacaf4 commit a50c11c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="simple_dwd_weatherforecast",
version="2.1.3",
version="2.1.4",
author="Max Fermor",
description="A simple tool to retrieve a weather forecast from DWD OpenData",
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion simple_dwd_weatherforecast/dwdforecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ def download_large_kml(self, stationid):
# Check if content has updated
headers = {"If-None-Match": self.etags[url] if url in self.etags else ""} # type: ignore
r = httpx.head(
"https://opendata.dwd.de/weather/local_forecasts/mos/MOSMIX_S/all_stations/kml/MOSMIX_S_LATEST_240.kmz",
url,
headers=headers,
)
if r.status_code == 304:
Expand Down

0 comments on commit a50c11c

Please sign in to comment.