From 4cdf8611a160df5a8f6e490ab2c08cbe34575d66 Mon Sep 17 00:00:00 2001 From: Alex Golec Date: Tue, 12 Jan 2021 23:06:37 -0500 Subject: [PATCH] Unpin library version requirements --- requirements.txt | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index a64a1fa..1fb9280 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,8 +2,8 @@ asynctest colorama coverage tox -authlib==0.15.2 -httpx==0.16.1 +authlib +httpx nose python-dateutil pytest diff --git a/setup.py b/setup.py index 0e144f9..039c813 100644 --- a/setup.py +++ b/setup.py @@ -30,8 +30,8 @@ ], python_requires='>=3.6', install_requires=[ - 'authlib==0.15.2', - 'httpx==0.16.1', + 'authlib', + 'httpx', 'python-dateutil', 'selenium', 'websockets'],