Skip to content

Commit 4c2e1cd

Browse files
committed
Update to hdwallet-slip39
o Passes unit tests (except Goerli Testnet related ones)
1 parent 8768bc0 commit 4c2e1cd

20 files changed

+745
-501
lines changed

GNUmakefile renamed to Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ else
6565
endif
6666

6767
# To see all pytest output, uncomment --capture=no, ...
68-
PYTEST_OPTS ?= -v --log-cli-level=WARNING # --capture=no # --doctest-modules
68+
PYTEST_OPTS ?= -v # --log-cli-level=WARNING --capture=no # --doctest-modules
6969

7070
PYTEST = $(PYTHON) -m pytest $(PYTEST_OPTS)
7171

README.org

Lines changed: 155 additions & 142 deletions
Large diffs are not rendered by default.

README.pdf

582 Bytes
Binary file not shown.

README.txt

Lines changed: 151 additions & 146 deletions
Large diffs are not rendered by default.

fonts_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from tkinter import Tk, font
2-
import PySimpleGUI as sg
2+
import FreeSimpleGUI as sg
33
root = Tk()
44
font_tuple = font.families()
55
#Creates a Empty list to hold font names

images/SLIP39-Example.pdf

2.78 KB
Binary file not shown.

pytest.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[pytest]
22
testpaths = slip39
3+
34
addopts = -v --ignore-glob=**/__main__.py --ignore-glob=**/main.py --ignore-glob=**/ethereum.py
45
#addopts = -v --ignore-glob=**/__main__.py --ignore-glob=**/main.py --ignore-glob=**/ethereum.py # --cov=slip39 --cov-config=.coveragerc

requirements-gui.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
pysimplegui >=5.0.7,<5.1
1+
#pysimplegui >=5.0.8,<5.1
2+
FreeSimpleGUI >=5.2,<6
3+

requirements-invoice.txt

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
1-
eth-account >=0.8.0,<0.9
1+
eth-account >=0.11.3,<0.12
22
py-solc-x >=1.1.1,<1.2
33
pycryptodome >=3.16, <4
44
requests >=2.20, <3
55

66
dkimpy[ed25519] >=1.0.5,<2
77

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

15-
# 6.6.1
16-
web3[tester] ==6.8.0
17-
eth-tester[py-evm] ==v0.9.1-b.1
18-
# Until ethpm upgrade to avoid dependency
19-
#ipfshttpclient = 0.8.0a2
10+
# 6.20.4 -- end of v6
11+
web3[tester] ==6.20.4
12+
eth-tester[py-evm] >=0.11.0b1,<0.12.0b1
13+
py-geth >=3.14.0,<4

requirements-wallet.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
eth-account >=0.8.0,<0.9
1+
eth-account >=0.11.3,<0.12

0 commit comments

Comments
 (0)