From 79f303be57a7171beeb6e02d392342659c3f1185 Mon Sep 17 00:00:00 2001 From: Nichlas Severinsen Date: Sat, 19 Feb 2022 00:17:45 +0100 Subject: [PATCH] Update requirement versions and allow compatible versions to be used --- requirements.txt | 9 +++++---- setup.py | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/requirements.txt b/requirements.txt index f7b6b90..53f74c0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -tqdm==4.32.2 -pycryptodome==3.9.8 -requests==2.22.0 -beautifulsoup4==4.7.1 +tqdm~=4.62.3 +pycryptodome~=3.14.1 +requests~=2.27.1 +beautifulsoup4~=4.10.0 +html5lib~=1.1 diff --git a/setup.py b/setup.py index 9827536..7cc651d 100755 --- a/setup.py +++ b/setup.py @@ -21,10 +21,11 @@ setup( packages=['libray'], scripts=['libray/libray'], install_requires=[ - 'tqdm==4.32.2', - 'pycryptodome==3.9.8', - 'requests==2.22.0', - 'beautifulsoup4==4.7.1', + 'tqdm~=4.62.3', + 'pycryptodome~=3.14.1', + 'requests~=2.27.1', + 'beautifulsoup4~=4.10.0', + 'html5lib~=1.1' ], include_package_data=True, package_data={'': ['data/keys.db']},