From 6d3edea0e0f05d55be175c0bbb464a0783a32d40 Mon Sep 17 00:00:00 2001 From: timotheyca Date: Sat, 27 Nov 2021 22:20:48 +0300 Subject: [PATCH] aiohttp downgrade --- requirements.txt | 2 +- setup.py | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index f8cec7a..1ae050a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -aiohttp~=3.8.1 +aiohttp~=3.8.0 PyNaCl~=1.4.0 git+https://gitea.ongoteam.net/PTV/ptvp35.git git+https://gitea.ongoteam.net/PTV/v6d0auth.git diff --git a/setup.py b/setup.py index 2c8afc7..3e3be02 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,5 @@ from setuptools import setup -install_requires = ''' -aiohttp~=3.8.1 -PyNaCl~=1.4.0 -ptvp35 @ git+https://gitea.ongoteam.net/PTV/ptvp35.git -v6d0auth @ git+https://gitea.ongoteam.net/PTV/v6d0auth.git -'''.strip().splitlines() - setup( name='v6d1tokens', version='', @@ -16,5 +9,10 @@ setup( author='PARRRATE T&V', author_email='', description='', - install_requires=install_requires + install_requires=[ + 'aiohttp~=3.8.0', + 'PyNaCl~=1.4.0', + 'ptvp35 @ git+https://gitea.ongoteam.net/PTV/ptvp35.git', + 'v6d0auth @ git+https://gitea.ongoteam.net/PTV/v6d0auth.git', + ] )