From 026cd639296c5ec0b20db89d4e1c1074b0c1b61b Mon Sep 17 00:00:00 2001 From: Dario Moceri Date: Fri, 29 Jan 2021 15:19:30 +0100 Subject: [PATCH] Update dependencies in setup.py --- CHANGELOG | 1 + setup.py | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index be45220..d994ee7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,7 @@ - Implemented Order Multi OP endpoint (rest) - Implemented Public Tickers History (rest) - Implemented Public Funding Stats (rest) +- Updated dependencies in setup.py 1.1.8 - Adds support for websocket events pu, pn and pu diff --git a/setup.py b/setup.py index 17efd88..a58a2f1 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,17 @@ setup( # Python versions (enforced) python_requires='>=3.0.0, <4', # deps installed by pip - install_requires=['eventemitter', 'asyncio', 'websockets', 'pylint', 'six', 'pyee', 'aiohttp'], + install_requires=[ + 'eventemitter==0.2.0', + 'asyncio==3.4.3', + 'websockets==7.0', + 'pylint==2.3.0', + 'pytest-asyncio==0.10.0', + 'six==1.12.0', + 'pyee==8.0.1', + 'aiohttp==3.4.4', + 'isort==4.3.21' + ], project_urls={ 'Bug Reports': 'https://github.com/bitfinexcom/bitfinex-api-py/issues', 'Source': 'https://github.com/bitfinexcom/bitfinex-api-py',