From 802cf44da5e1980d0c41cde3bbdd47edfc6b7773 Mon Sep 17 00:00:00 2001 From: FL550 Date: Mon, 30 Sep 2024 10:18:29 +0000 Subject: [PATCH] Pins stream-inflate version --- requires.txt | 1 + setup.py | 12 ++++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/requires.txt b/requires.txt index 3298e55..2a7264a 100644 --- a/requires.txt +++ b/requires.txt @@ -2,5 +2,6 @@ lxml requests Pillow arrow +stream-inflate==0.0.14 stream-unzip httpx \ No newline at end of file diff --git a/setup.py b/setup.py index bbcc861..f0216bf 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="simple_dwd_weatherforecast", - version="2.1.5", + version="2.1.6", author="Max Fermor", description="A simple tool to retrieve a weather forecast from DWD OpenData", long_description=long_description, @@ -20,5 +20,13 @@ "Operating System :: OS Independent", ], python_requires=">=3.6", - install_requires=["lxml", "requests", "Pillow", "arrow", "stream-unzip", "httpx"], + install_requires=[ + "lxml", + "requests", + "Pillow", + "arrow", + "stream-inflate==0.0.14", + "stream-unzip", + "httpx", + ], )