Skip to content

Commit 9365038

Browse files
authored
Merge pull request #223 from adobe-apiplatform/bugfix/workaround-for-windows-pycryptodome-path-length-bug
fix #224: workaround for pycryptodome windows path length bug: use 3.3.1 version.
2 parents 92704c7 + a0b1c18 commit 9365038

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
license='MIT',
4343
packages=['user_sync', 'user_sync.connector'],
4444
install_requires=[
45-
'pycryptodome',
4645
'python-ldap==2.4.25',
4746
'PyYAML',
4847
'umapi-client>=2.5',
@@ -55,7 +54,11 @@
5554
'dbus-python'
5655
],
5756
':sys_platform=="win32"':[
58-
'pywin32-ctypes==0.0.1'
57+
'pywin32-ctypes==0.0.1',
58+
'pycryptodome==3.3.1'
59+
],
60+
':sys_platform!="win32"': [
61+
'pycryptodome',
5962
]
6063
},
6164
setup_requires=['nose>=1.0'],

0 commit comments

Comments
 (0)