Skip to content

Commit

Permalink
#120 Update requirements
Browse files Browse the repository at this point in the history
Update for conda recipe
Update basing on the Python versions
  • Loading branch information
ebellocchia committed Feb 9, 2024
1 parent 79a79a0 commit 77f4df7
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
cbor2~=5.1
coincurve>=15.0.1,<20.0.0
cbor2>=5.1.2,<6.0.0
coincurve>=15.0.1,<19.0.0; python_version == '3.7'
coincurve>=15.0.1; python_version > '3.7' and python_version < '3.10'
coincurve>=16.0.0; python_version == '3.10'
coincurve>=18.0.0; python_version == '3.11'
coincurve>=19.0.0; python_version >= '3.12'
crcmod~=1.7
ecdsa~=0.16
ed25519-blake2b>=1.4.1,<2.0.0
pycryptodome~=3.6
pynacl~=1.4
py-sr25519-bindings>=0.1.3,<2.0.0
ecdsa~=0.17
ed25519-blake2b>=1.4,<2.0.0; python_version < '3.12'
ed25519-blake2b>=1.4.1,<2.0.0; python_version >= '3.12'
pycryptodome~=3.15
pynacl~=1.5
py-sr25519-bindings>=0.1.3,<2.0.0; python_version < '3.10'
py-sr25519-bindings>=0.1.4,<2.0.0; python_version == '3.10'
py-sr25519-bindings>=0.2.0,<2.0.0; python_version >= '3.11'

0 comments on commit 77f4df7

Please sign in to comment.