Skip to content
This repository was archived by the owner on Nov 22, 2022. It is now read-only.

Commit f8d6056

Browse files
committed
0.7.1
1 parent 03c8a06 commit f8d6056

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

agora/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.7.0"
1+
VERSION = "0.7.1"

setup.py

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,30 @@
55
# load VERSION from file
66
exec(open('agora/version.py').read())
77

8-
with open('requirements.txt') as f:
9-
requires = f.readlines()
10-
with open('requirements.dev.txt') as f:
11-
tests_requires = f.readlines()
8+
# Keep this aligned with requires.txt
9+
requires = [
10+
'grpcio==1.34.1',
11+
'agora-api==0.26.0',
12+
'kin-base==1.4.1',
13+
'ed25519==1.4; sys_platform != "win32" and sys_platform != "cygwin"',
14+
'pure25519==0.0.1',
15+
'protobuf==3.12.2',
16+
'pynacl==1.4.0',
17+
'base58==2.0.1'
18+
]
19+
20+
# Keep this aligned with requires.dev.txt
21+
tests_requires = {
22+
'Flask==1.1.2',
23+
'grpcio-testing==1.30.0',
24+
'pytest==5.4.3',
25+
'pytest-cov==2.10.0',
26+
'pytest-freezegun==0.4.2',
27+
'pytest-mock==3.2.0',
28+
'pytest-timeout==1.4.1',
29+
'sphinx==3.1.2',
30+
'sphinx-autodoc-typehints==1.11.0'
31+
}
1232

1333
setup(
1434
name='kin-sdk-v2',

0 commit comments

Comments
 (0)