Merge pull request #136 from ethereum/master

Backported hotfix from master back into dev
This commit is contained in:
Hsiao-Wei Wang 2020-10-20 22:45:50 +08:00 committed by GitHub
commit cf559225d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,7 @@
from typing import Dict, NamedTuple
import pkg_resources
DEPOSIT_CLI_VERSION = pkg_resources.require("eth2deposit")[0].version
DEPOSIT_CLI_VERSION = "0.4.1"
class BaseChainSetting(NamedTuple):

View File

@ -6,7 +6,7 @@ THIS IS A STUB FOR RUNNING THE APP
setup(
name="eth2deposit",
version='0.4.0',
version='0.4.1',
py_modules=["eth2deposit"],
packages=find_packages(exclude=('tests', 'docs')),
python_requires=">=3.7,<4",