Change url, revert rlp, update deps

This commit is contained in:
lash 2022-02-20 16:40:55 +00:00
parent c3033e9572
commit 385578e582
Signed by untrusted user who does not match committer: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 6 additions and 5 deletions

View File

@ -2,6 +2,7 @@
- Add message signer cli - Add message signer cli
- Add pbkdf2 support - Add pbkdf2 support
- Add -0 flag for omitting newline on output - Add -0 flag for omitting newline on output
- Revert RLP to 2.0.1, to not break eth-tester in dependents
* 0.5.3 * 0.5.3
- Upgrade RLP to 3.0.0 (eliminates really annoying cytoolz warning on stdout) - Upgrade RLP to 3.0.0 (eliminates really annoying cytoolz warning on stdout)
--- ---

View File

@ -1,10 +1,10 @@
cryptography==3.2.1 cryptography==3.2.1
pysha3==1.0.2 pysha3==1.0.2
#rlp==2.0.1 rlp==2.0.1
rlp==3.0.0 #rlp==3.0.0
json-rpc==1.13.0 json-rpc==1.13.0
confini~=0.5.1 confini~=0.5.1
coincurve==15.0.0 coincurve==15.0.0
hexathon~=0.1.0 hexathon~=0.1.0
pycryptodome==3.10.1 pycryptodome==3.10.1
funga==0.5.1 funga==0.5.2

View File

@ -33,7 +33,7 @@ f.close()
setup( setup(
name="funga-eth", name="funga-eth",
version="0.5.4b2", version="0.5.6",
description="Ethereum implementation of the funga keystore and signer", description="Ethereum implementation of the funga keystore and signer",
author="Louis Holbrook", author="Louis Holbrook",
author_email="dev@holbrook.no", author_email="dev@holbrook.no",
@ -58,6 +58,6 @@ setup(
'eth-sign-msg=funga.eth.runnable.msg:main', 'eth-sign-msg=funga.eth.runnable.msg:main',
], ],
}, },
url='https://gitlab.com/chaintool/funga-eth', url='https://git.grassecon.net/chaintool/funga-eth',
include_package_data=True, include_package_data=True,
) )