-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop asn1crypto and just support pyasn1
I added asn1crypto support three years ago in #33, because I was under the impression that other Python packages such as PyCA cryptography were going to standardize on asn1crypto. Since 2017 cryptography and other dependencies have dropped asn1crypto. kdcproxy is currently the only package in RHEL that depends on python-asn1crypto. Let's keep it simple and just support pyasn1. Signed-off-by: Christian Heimes <[email protected]>
- Loading branch information
1 parent
fcad7d5
commit d36d26b
Showing
5 changed files
with
3 additions
and
153 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
from setuptools import setup | ||
|
||
install_requires = [ | ||
'asn1crypto>=0.23', | ||
'pyasn1', | ||
'dnspython' | ||
] | ||
|
||
|
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
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