Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the Python 2.x-only Pyro dependency #186

Merged
merged 1 commit into from
Sep 23, 2024
Merged
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
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Unreleased changes
* Remove Python 2 conditional code
* Migrate a `src/` layout.
* Support only Python 3.9 and higher
* Remove the Python 2.x-only Pyro dependency
* Migrate CI to use the official Coveralls action
* Standardize local and CI testing to use tox
* Build wheels in CI for all supported Python versions
Expand Down
2 changes: 0 additions & 2 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
- complete support of remote readers with Pyro and add in documentation

- document construction of standalone windows application using py2exe

- documentation and implementation of card services
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ def run(self):
'python_requires': '>=3.9',
'packages': ["smartcard",
"smartcard.pcsc",
"smartcard.pyro",
"smartcard.reader",
"smartcard.scard",
"smartcard.sw",
Expand Down Expand Up @@ -125,7 +124,6 @@ def run(self):
+ platform_swig_opts)],
'extras_require': {
'Gui': ['wxPython'],
'Pyro': ['Pyro'],
},

'classifiers': [
Expand Down
91 changes: 0 additions & 91 deletions src/smartcard/pyro/PyroReader.py

This file was deleted.

23 changes: 0 additions & 23 deletions src/smartcard/pyro/__init__.py

This file was deleted.

92 changes: 0 additions & 92 deletions src/smartcard/pyro/server/PyroDaemon.py

This file was deleted.

104 changes: 0 additions & 104 deletions src/smartcard/pyro/server/PyroEventServer.py

This file was deleted.

Loading