Skip to content

Commit 520bf5e

Browse files
committed
release 0.0.6
1 parent b8ec57e commit 520bf5e

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#zvt>=0.8.2
1+
zvt>=0.8.2
22
ccxt

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
setup(
3333
name="zvt-ccxt",
34-
version='0.0.5',
34+
version='0.0.6',
3535
description='ccxt cryptocurrency plugin for zvt ',
3636
install_requires=requirements,
3737
entry_points={"zvt": ["ccxt = zvt_ccxt"]},

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- coding: utf-8 -*-

tests/context.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- coding: utf-8 -*-
2+
3+
def init_test_context():
4+
import os
5+
import sys
6+
7+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

tests/test.py renamed to tests/test_coin.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
from .context import init_test_context
3+
4+
init_test_context()
5+
26
from zvt_ccxt.domain import Coin
37

48

0 commit comments

Comments
 (0)