Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 21 additions & 20 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
protobuf==4.21.6
grpcio-tools==1.59.0
wheel==0.41.2
jsonrpcclient==4.0.3
eth-hash==0.5.2
rlp==3.0.0
eth-rlp==0.3.0
web3==6.11.1
mnemonic==0.20
pycoin==0.92.20230326
pyyaml==6.0.1
protobuf~=6.30
grpcio~=1.59
grpcio-tools~=1.59
wheel~=0.45
# jsonrpcclient~=4.0
# eth-hash~=0.5
rlp~=4.0
# eth-rlp~=2.0
web3~=7.0
mnemonic==0.21
# pycoin==0.92.20241201
pyyaml~=6.0.1
ipfshttpclient==0.4.13.2
pymultihash==0.8.2
base58==2.1.1
argcomplete==3.1.2
grpcio-health-checking==1.59.0
jsonschema==4.0.0
eth-account==0.9.0
trezor==0.13.8
ledgerblue==0.1.48
snet-contracts==1.0.0
lighthouseweb3==0.1.4
cryptography==44.0.1
argcomplete~=3.1
grpcio-health-checking~=1.59
jsonschema~=4.1
eth-account~=0.9
trezor~=0.13.8
ledgerblue~=0.1.48
snet-contracts==1.0.1
lighthouseweb3~=0.1.4
cryptography~=46.0
2 changes: 1 addition & 1 deletion snet/cli/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def check_training_in_proto(protodir) -> bool:
for file in files:
if ".proto" not in file:
continue
with open(protodir.joinpath(file), "r") as f:
with open(os.path.join(protodir, file), "r") as f:
proto_text = f.read()
if 'import "training.proto";' in proto_text:
return True
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.0.0"
__version__ = "3.0.1"