aiohttp downgrade

This commit is contained in:
AF 2021-11-27 22:20:48 +03:00
parent bc2b0e1516
commit 6d3edea0e0
2 changed files with 7 additions and 9 deletions

View File

@ -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

View File

@ -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',
]
)