Skip to content

Commit 1128778

Browse files
committed
Update to web3 6.8.0
1 parent 1b15fd9 commit 1128778

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

requirements-invoice.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,14 @@ requests >=2.20, <3
99
dkimpy[ed25519] >=1.0.5,<2
1010

1111
# These versions are very brittle; must be upgraded in lock-step (see web3.py/setup.py)
12-
web3[tester] ==6.0.0b9
13-
eth-tester[py-evm] ==v0.8.0-b.3
12+
# 6.0.0b9
13+
#web3[tester] ==6.0.0b9
14+
#eth-tester[py-evm] ==v0.8.0-b.3
15+
# Until ethpm upgrade to avoid dependency
16+
#ipfshttpclient ; python_version >= "3.11"
1417

18+
# 6.6.1
19+
web3[tester] ==6.8.0
20+
eth-tester[py-evm] ==v0.9.1-b.1
1521
# Until ethpm upgrade to avoid dependency
16-
ipfshttpclient ; python_version >= "3.11"
22+
#ipfshttpclient = 0.8.0a2

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
base58 >=2.0.1,<3
22
chacha20poly1305 >=0.0.3
33
click >=8.1.3,<9
4-
crypto-licensing >=3.3.1,<4
4+
crypto-licensing >=3.3.2,<4
55
cx_Freeze >=6.12 ; sys_platform == "win32"
66
fpdf2 >=2.5.7,<3
77
hdwallet >=2.2.1,<3

slip39/invoice/multipayout_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from crypto_licensing import licensing, ed25519
1414

1515
from web3 import Web3, logs as web3_logs
16-
from web3.contract import normalize_address_no_ens
16+
from web3._utils.normalizers import normalize_address_no_ens
1717
from web3.middleware import construct_sign_and_send_raw_middleware
1818
from eth_account import Account
1919

@@ -306,7 +306,7 @@ def test_create(address, nonce, expected_address):
306306
#
307307
# Here are the Goerli testnet results from the first successful test:
308308
#
309-
# The funds came from the 0x667A... source account, and were:
309+
# The funds came from the 0x667A... (the "zoo zoo ... wrong") source account, and were:
310310
#
311311
# .01 ETH
312312
# 820.00 WEENUS
@@ -956,7 +956,7 @@ def test_multipayout_api( testnet, provider, chain_id, src, src_prvkey, destinat
956956
print( f"{machine} == {machine.bytes.hex()}" )
957957

958958
# Get unique Agent ID Keypair (plaintext; no username/password required)
959-
(keyname,keypair), = licensing.load_keys(
959+
(keyname,keypair), = licensing.load_keypairs(
960960
extra=[os.path.dirname( __file__ )], filename=__file__ )
961961
print( f"{licensing.into_b64( keypair.vk )}: {keyname}" )
962962

0 commit comments

Comments
 (0)