From eff3dcfdbb2bfc52c495882e7b058b2f3bc466cf Mon Sep 17 00:00:00 2001 From: Arjan Zijderveld Date: Thu, 8 Oct 2020 16:19:33 +0200 Subject: [PATCH] Updated package requirements #35 --- requirements.txt | 12 ++++++------ setup.py | 24 ++++++++++++------------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8db18eb..d3e9e0e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,15 +1,15 @@ -docker==4.2.2 +docker==4.3.1 asyncio==3.4.3 websockets==8.1 -base58==1.0.3 +base58==2.0.1 certifi==2020.6.20 chardet==3.0.4 idna==2.10 requests==2.24.0 -urllib3==1.25.9 -xxhash==1.3.0 -pytest==4.4.0 +urllib3==1.25.10 +xxhash==2.0.0 +pytest==6.1.1 -scalecodec>=0.10.18 +scalecodec>=0.10.19 py-sr25519-bindings>=0.1.2 py-bip39-bindings>=0.1.6 diff --git a/setup.py b/setup.py index 3eaea1e..0488e2c 100644 --- a/setup.py +++ b/setup.py @@ -165,7 +165,7 @@ # https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires #python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4', - python_requires='>=3.6, <4', + python_requires='>=3.7, <4', # This field lists other packages that your project depends on to run. # Any package you put here will be installed by pip when your project is @@ -174,17 +174,17 @@ # For an analysis of "install_requires" vs pip's requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=[ - 'asyncio==3.4.3', - 'websockets==8.1', - 'base58==1.0.3', - 'certifi==2019.6.16', - 'chardet==3.0.4', - 'docker==4.2.0', - 'idna==2.8', - 'requests==2.22.0', - 'urllib3==1.25.3', - 'xxhash==1.3.0', - 'scalecodec>=0.10.18', + 'asyncio>=3.4.3', + 'websockets>=8.1', + 'base58>=2.0.1', + 'certifi>=2019.6.16', + 'chardet>=3.0.4', + 'docker>=4.2.0', + 'idna>=2.8', + 'requests>=2.24.0', + 'urllib3>=1.25.10', + 'xxhash>=1.3.0', + 'scalecodec>=0.10.19', 'py-sr25519-bindings>=0.1.2', 'py-bip39-bindings>=0.1.6' ],