Skip to content

Commit

Permalink
Merge pull request #14 from xloem/py38
Browse files Browse the repository at this point in the history
Use pysha3 on python<3.9
  • Loading branch information
ctrl-Felix committed Jun 11, 2023
2 parents fa0782f + a99a4a1 commit a1b8fcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ dependencies = [
"bech32==1.2.0",
"mnemonic==0.20",
"hdwallets==0.1.2",
"safe-pysha3==1.0.3"
"safe-pysha3==1.0.3;python_version>='3.9'",
"pysha3==1.0.2;python_version<'3.9'",
]
dynamic = []

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ hdwallets==0.1.2
httpx==0.23.0
mnemonic==0.20
protobuf==4.22.1
safe-pysha3==1.0.3
safe-pysha3==1.0.3;python_version>='3.9'
pysha3==1.0.2;python_version<'3.9'

0 comments on commit a1b8fcb

Please sign in to comment.