mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
@@ -1,3 +1,6 @@
|
||||
1.2.3
|
||||
-) Tests adjusted
|
||||
|
||||
1.2.2
|
||||
-) WS bugfix (exception InvalidStatusCode not handled)
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ async def run():
|
||||
print(trades)
|
||||
for trade in trades:
|
||||
orders_ids.append(trade[0])
|
||||
assert orders_ids == [657815316, 657815314, 657815312, 657815311, 657815309]
|
||||
assert orders_ids == [657815316, 657815314, 657815312, 657815308, 657815304]
|
||||
|
||||
# check that strictly decreasing order id condition is always respected
|
||||
# check that not increasing timestamp condition is always respected
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
This module contains the current version of the bfxapi lib
|
||||
"""
|
||||
|
||||
__version__ = '1.2.2'
|
||||
__version__ = '1.2.3'
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
asyncio==3.4.3
|
||||
websockets==8.1
|
||||
pylint==2.3.0
|
||||
pytest-asyncio==0.10.0
|
||||
pytest-asyncio==0.15.1
|
||||
six==1.12.0
|
||||
pyee==8.0.1
|
||||
aiohttp==3.4.4
|
||||
|
||||
2
setup.py
2
setup.py
@@ -11,7 +11,7 @@ from os import path
|
||||
here = path.abspath(path.dirname(__file__))
|
||||
setup(
|
||||
name='bitfinex-api-py',
|
||||
version='1.2.2',
|
||||
version='1.2.3',
|
||||
description='Official Bitfinex Python API',
|
||||
long_description='A Python reference implementation of the Bitfinex API for both REST and websocket interaction',
|
||||
long_description_content_type='text/markdown',
|
||||
|
||||
Reference in New Issue
Block a user