Skip to content

Commit

Permalink
Fix smartcard depdency versions
Browse files Browse the repository at this point in the history
The version specification is invalid with recent setuptools and also
the package name is `pyscard`.

See pypa/setuptools#3801

fixes LedgerHQ#53
  • Loading branch information
EchterAgo committed Oct 10, 2023
1 parent 433940c commit c44114c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
packages=find_packages(),
install_requires=['hidapi>=0.7.99', 'ecdsa>=0.9'],
extras_require = {
'smartcard': [ 'python-pyscard>=1.6.12-4build1' ]
'smartcard': [ 'pyscard>=1.6.12' ]
},
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit c44114c

Please sign in to comment.