-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for conda recipe Update basing on the Python versions
- Loading branch information
1 parent
79a79a0
commit 77f4df7
Showing
1 changed file
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |