Skip to content

Commit

Permalink
Merge pull request #25 from ElrondNetwork/fix-requirements-setup
Browse files Browse the repository at this point in the history
Fix requirements setup
  • Loading branch information
camilbancioiu authored Aug 27, 2021
2 parents 6ce0097 + 3d672a8 commit f510995
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion erdpy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.16"
__version__ = "1.0.17"
3 changes: 3 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ ignore_missing_imports = True

[mypy-ledgercomm.*]
ignore_missing_imports = True

[mypy-setuptools.*]
ignore_missing_imports = True
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with open("README.md", "r") as fh:
long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"

VERSION = "1.0.16"
VERSION = "1.0.17"

try:
with open('./erdpy/_version.py', 'wt') as versionfile:
Expand All @@ -26,7 +26,14 @@
include_package_data=True,
setup_requires=["wheel"],
install_requires=[
"toml>=0.10.2", "bottle", "requests", "pynacl", "pycryptodomex", "cryptography>=3.2", "prettytable"
"toml>=0.10.2",
"bottle",
"requests",
"pynacl",
"pycryptodomex",
"cryptography>=3.2",
"prettytable",
"ledgercomm"
],
zip_safe=False,
keywords=["Elrond"],
Expand Down

0 comments on commit f510995

Please sign in to comment.