From a25ce3f7a224d3743a1732bd51be060abb4ac27f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Esteban=20S=C3=A1nchez?= <esteban.sanchez@gmail.com>
Date: Tue, 9 May 2023 16:47:54 +0200
Subject: [PATCH] Upgraded libs and set python version limitation

---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 1479468..4512a87 100644
--- a/setup.py
+++ b/setup.py
@@ -16,8 +16,8 @@ setup(
     download_url='https://github.com/esanchezm/prometheus-qbittorrent-exporter/archive/1.3.0.tar.gz',
     keywords=['prometheus', 'qbittorrent'],
     classifiers=[],
-    python_requires='>=3',
-    install_requires=['attrdict==2.0.1', 'qbittorrent-api==2022.1.27', 'prometheus_client==0.12.0 ', 'python-json-logger==2.0.2'],
+    python_requires='>=3,<3.10',
+    install_requires=['attrdict==2.0.1', 'qbittorrent-api==2023.4.47', 'prometheus_client==0.16.0', 'python-json-logger==2.0.2'],
     entry_points={
         'console_scripts': [
             'qbittorrent-exporter=qbittorrent_exporter.exporter:main',