Skip to content

Commit 9009564

Browse files
authored
Merge pull request #251 from adobe-apiplatform/v2
(no issue) build script changes to stabilize Windows build
2 parents b6e0aaa + f6a45d4 commit 9009564

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ ifeq ($(OS),Windows_NT)
77
rm_path := $(shell python -c "import distutils.spawn; print(distutils.spawn.find_executable('rm'))")
88
ifeq ($(rm_path),None)
99
RM := rmdir /S /Q
10+
else
11+
RM := $(rm_path) -rf
1012
endif
1113
else
1214
output_file_extension = ""

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
packages=['user_sync', 'user_sync.connector'],
4747
install_requires=[
4848
'pycryptodome',
49-
'pyldap',
50-
'PyYAML',
49+
'pyldap==2.4.35.1',
50+
'PyYAML==3.12',
5151
'umapi-client>=2.5',
5252
'psutil',
5353
'keyring',

0 commit comments

Comments
 (0)