requirements: bump pinned (and max) aiorpcx versions to 0.23.1
related https://github.com/spesmilo/electrum/issues/8954
This commit is contained in:
@@ -2,8 +2,8 @@ aiohttp==3.9.3 \
|
|||||||
--hash=sha256:90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7
|
--hash=sha256:90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7
|
||||||
aiohttp-socks==0.8.4 \
|
aiohttp-socks==0.8.4 \
|
||||||
--hash=sha256:6b611d4ce838e9cf2c2fed5e0dba447cc84824a6cba95dc5747606201da46cb4
|
--hash=sha256:6b611d4ce838e9cf2c2fed5e0dba447cc84824a6cba95dc5747606201da46cb4
|
||||||
aiorpcX==0.22.1 \
|
aiorpcX==0.23.1 \
|
||||||
--hash=sha256:6026f7bed3432e206589c94dcf599be8cd85b5736b118c7275845c1bd922a553
|
--hash=sha256:5b23002f1a4d5d3085e31555a07519c5ef8d4c40071eb499556ffda8114860a2
|
||||||
aiosignal==1.3.1 \
|
aiosignal==1.3.1 \
|
||||||
--hash=sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc
|
--hash=sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc
|
||||||
async-timeout==4.0.3 \
|
async-timeout==4.0.3 \
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
qrcode
|
qrcode
|
||||||
protobuf>=3.20,<4
|
protobuf>=3.20,<4
|
||||||
qdarkstyle>=2.7
|
qdarkstyle>=2.7
|
||||||
aiorpcx>=0.22.0,<0.23
|
aiorpcx>=0.22.0,<0.24
|
||||||
aiohttp>=3.3.0,<4.0.0
|
aiohttp>=3.3.0,<4.0.0
|
||||||
aiohttp_socks>=0.8.4
|
aiohttp_socks>=0.8.4
|
||||||
certifi
|
certifi
|
||||||
|
|||||||
@@ -74,8 +74,8 @@ def check_imports():
|
|||||||
import aiorpcx
|
import aiorpcx
|
||||||
except ImportError as e:
|
except ImportError as e:
|
||||||
sys.exit(f"Error: {str(e)}. Try 'sudo python3 -m pip install <module-name>'")
|
sys.exit(f"Error: {str(e)}. Try 'sudo python3 -m pip install <module-name>'")
|
||||||
if not ((0, 22, 0) <= aiorpcx._version < (0, 23)):
|
if not ((0, 22, 0) <= aiorpcx._version < (0, 24)):
|
||||||
raise RuntimeError(f'aiorpcX version {aiorpcx._version} does not match required: 0.22.0<=ver<0.23')
|
raise RuntimeError(f'aiorpcX version {aiorpcx._version} does not match required: 0.22.0<=ver<0.24')
|
||||||
# the following imports are for pyinstaller
|
# the following imports are for pyinstaller
|
||||||
from google.protobuf import descriptor
|
from google.protobuf import descriptor
|
||||||
from google.protobuf import message
|
from google.protobuf import message
|
||||||
|
|||||||
Reference in New Issue
Block a user