forked from ranaroussi/pywallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequirements.txt
22 lines (16 loc) · 895 Bytes
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# It is imparative to use the latest coincurve version as it includes the latest security patches
# for libsecp256k1.
coincurve>=19.0.1
# Requests 2.20.1 fixes Auth stripping and <2.20.0 fails in certain Windows environments
requests>=2.20.1
# Protobuf <4.23.0 has a bug with Python repeated fields. And 4.24.0 has a segfaul in CopyFrom()
protobuf>=4.23.0, !=4.24.0
# Earliest release to include Python 3.8 wheels for all platforms.
pycryptodomex>=3.9.2
# Latest stable version is 3.x, aiohttp is used by requests which by default pulls in a beta (and broken) version.
aiohttp<4.0
# Web3 6.14.0 fixes a bug that would make ZPyWallet unit tests fail to setup the testing environment.
web3>=6.14.0
# For mempool transaction caching inside full nodes. By default only SQLite is included.
# psycopg2 # If you use Postgres install this
# mysql-connector-python # If you use MySQL install this