We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6e0aaa + f6a45d4 commit 9009564Copy full SHA for 9009564
Makefile
@@ -7,6 +7,8 @@ ifeq ($(OS),Windows_NT)
7
rm_path := $(shell python -c "import distutils.spawn; print(distutils.spawn.find_executable('rm'))")
8
ifeq ($(rm_path),None)
9
RM := rmdir /S /Q
10
+ else
11
+ RM := $(rm_path) -rf
12
endif
13
else
14
output_file_extension = ""
setup.py
@@ -46,8 +46,8 @@
46
packages=['user_sync', 'user_sync.connector'],
47
install_requires=[
48
'pycryptodome',
49
- 'pyldap',
50
- 'PyYAML',
+ 'pyldap==2.4.35.1',
+ 'PyYAML==3.12',
51
'umapi-client>=2.5',
52
'psutil',
53
'keyring',
0 commit comments