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

Commit

Permalink
0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
richardmands committed Apr 22, 2022
1 parent 03c8a06 commit f8d6056
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion agora/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.7.0"
VERSION = "0.7.1"
28 changes: 24 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,30 @@
# load VERSION from file
exec(open('agora/version.py').read())

with open('requirements.txt') as f:
requires = f.readlines()
with open('requirements.dev.txt') as f:
tests_requires = f.readlines()
# Keep this aligned with requires.txt
requires = [
'grpcio==1.34.1',
'agora-api==0.26.0',
'kin-base==1.4.1',
'ed25519==1.4; sys_platform != "win32" and sys_platform != "cygwin"',
'pure25519==0.0.1',
'protobuf==3.12.2',
'pynacl==1.4.0',
'base58==2.0.1'
]

# Keep this aligned with requires.dev.txt
tests_requires = {
'Flask==1.1.2',
'grpcio-testing==1.30.0',
'pytest==5.4.3',
'pytest-cov==2.10.0',
'pytest-freezegun==0.4.2',
'pytest-mock==3.2.0',
'pytest-timeout==1.4.1',
'sphinx==3.1.2',
'sphinx-autodoc-typehints==1.11.0'
}

setup(
name='kin-sdk-v2',
Expand Down

0 comments on commit f8d6056

Please sign in to comment.