Skip to content

Commit 9979464

Browse files
committed
BUG: user-access-control should be user_options and not options
1 parent cf91f46 commit 9979464

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -657,8 +657,8 @@ def pxd(name):
657657
if _have_setuptools:
658658
setuptools_kwargs["test_suite"] = "nose.collector"
659659

660-
options = {'bdist_wininst': {'user-access-control': 'auto'}}
661-
# options = {}
660+
user_options = {'bdist_wininst': {'user-access-control': 'auto'}}
661+
options = {}
662662

663663
write_version_py()
664664
setup(name=DISTNAME,
@@ -705,4 +705,5 @@ def pxd(name):
705705
classifiers=CLASSIFIERS,
706706
platforms='any',
707707
options=options,
708+
user_options=user_options,
708709
**setuptools_kwargs)

0 commit comments

Comments
 (0)