Skip to content
This repository was archived by the owner on Nov 15, 2022. It is now read-only.

Commit cb431ee

Browse files
Switch crypto dep to pycryptodome (#10)
1 parent 03359df commit cb431ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cas_client/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = (0, 1, 5)
1+
__version_info__ = (0, 1, 6)
22
__version__ = '.'.join(str(_) for _ in __version_info__)

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PyCrypto
1+
pycryptodome
22
requests
33
six
44
tox

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
description='A Python CAS client',
2727
include_package_data=True,
2828
install_requires=[
29-
'PyCrypto',
29+
'pycryptodome',
3030
'requests',
3131
'six',
3232
'tox',

0 commit comments

Comments
 (0)