Skip to content

Commit

Permalink
Fix smartcard pyscard dependency versions and name
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 f65cca5
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 f65cca5

Please sign in to comment.