Skip to content

Commit eb6f192

Browse files
authored
Handle NaN Weather codes (#16)
1 parent 7244eea commit eb6f192

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3.23.2
22

33
LABEL maintainer="Michael Oberdorf <info@oberdorf-itc.de>"
4-
LABEL site.local.program.version="1.3.2"
4+
LABEL site.local.program.version="1.3.3"
55

66
ENV TZ="UTC" \
77
REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Container image: [DockerHub](https://hub.docker.com/r/oitc/weather2mqtt)
2626

2727
# Supported tags and respective `Dockerfile` links
2828

29-
* [`latest`, `1.3.2`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.3.2/Dockerfile)
29+
* [`latest`, `1.3.3`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.3.3/Dockerfile)
3030
* [`1.3.1`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.3.1/Dockerfile)
3131
* [`1.3.0`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.3.0/Dockerfile)
3232
* [`1.2.0`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.2.0/Dockerfile)

src/app/bin/weather2mqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from lib.weather_codes import WeatherCodes
3030
from retry_requests import retry # seeAlso: https://pypi.org/project/retry-requests/
3131

32-
__version__ = "1.3.2"
32+
__version__ = "1.3.3"
3333
__script_path__ = os.path.dirname(__file__)
3434
__config_path__ = os.path.join(os.path.dirname(__script_path__), "etc")
3535
__local_tz__ = pytz.timezone("UTC")

0 commit comments

Comments
 (0)