From f0f1e800ae480121d33cd433080aa9412cb9e539 Mon Sep 17 00:00:00 2001 From: Badri Sunderarajan Date: Fri, 25 Oct 2024 13:14:20 +0530 Subject: [PATCH] Upgrade dependencies to latest versions This is because, at least in Python 12, the older dependencies were starting to break (mainly to do with the way `requests` was using the `collections` library, but this may be a good time to update everything else as well). --- setup.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index f0221eb..e843eaa 100644 --- a/setup.py +++ b/setup.py @@ -15,11 +15,12 @@ setup( include_package_data=True, install_requires=[ - 'click==6.2', - 'requests==2.9.1', - 'progress==1.2', - 'future==0.15.2', - 'six==1.10.0', + 'click==8.1.7', + 'requests==2.32.3', + 'progress==1.6', + 'future==1.0.0', + 'six==1.16.0', + 'urllib3==2.2.3', 'pocket-api' ], entry_points={